Lines Matching refs:firmware_ops
14 * struct firmware_ops
20 struct firmware_ops {
55 /* Global pointer for current firmware_ops structure, can't be NULL. */
56 extern const struct firmware_ops *firmware_ops;
65 ((firmware_ops->op) ? firmware_ops->op(__VA_ARGS__) : (-ENOSYS))
70 * A function to register platform firmware_ops struct.
72 static inline void register_firmware_ops(const struct firmware_ops *ops)
76 firmware_ops = ops;