123456789101112131415161718192021222324252627 |
- #pragma once
- #include <linux/types.h>
- #include "smcinvoke_object.h"
- #define IHDCP1OPS_NOTIFY_TOPOLOGY_CHANGE 0
- static inline int32_t hdcp1_ops_release(struct Object self)
- {
- return Object_invoke(self, Object_OP_release, 0, 0);
- }
- static inline int32_t hdcp1_ops_retain(struct Object self)
- {
- return Object_invoke(self, Object_OP_retain, 0, 0);
- }
- static inline int32_t hdcp1_ops_notify_topology_change(struct Object self)
- {
- return Object_invoke(self, IHDCP1OPS_NOTIFY_TOPOLOGY_CHANGE, 0, 0);
- }
|