Home
last modified time | relevance | path

Searched refs:firmware_ops (Results 1 – 5 of 5) sorted by relevance

/linux/arch/arm/include/asm/
H A Dfirmware.h14 * struct firmware_ops
20 struct firmware_ops { struct
55 /* Global pointer for current firmware_ops structure, can't be NULL. */ argument
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) in register_firmware_ops()
76 firmware_ops in register_firmware_ops()
24 prepare_idlefirmware_ops global() argument
28 do_idlefirmware_ops global() argument
[all...]
/linux/arch/arm/common/
H A Dfirmware.c13 static const struct firmware_ops default_firmware_ops;
15 const struct firmware_ops *firmware_ops = &default_firmware_ops; variable
/linux/Documentation/arch/arm/
H A Dfirmware.rst12 Firmware operations can be specified by filling in a struct firmware_ops
16 void register_firmware_ops(const struct firmware_ops *ops)
18 The ops pointer must be non-NULL. More information about struct firmware_ops
27 ((firmware_ops->op) ? firmware_ops->op(__VA_ARGS__) : (-ENOSYS))
49 static const struct firmware_ops platformX_firmware_ops = {
/linux/drivers/firmware/
H A Dtrusted_foundations.c143 static const struct firmware_ops trusted_foundations_ops = {
183 return firmware_ops == &trusted_foundations_ops; in trusted_foundations_registered()
/linux/arch/arm/mach-exynos/
H A Dfirmware.c150 static const struct firmware_ops exynos_firmware_ops = {