firmware_attributes_class.h 352 B

1234567891011121314
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /* Firmware attributes class helper module */
  3. #ifndef FW_ATTR_CLASS_H
  4. #define FW_ATTR_CLASS_H
  5. #include <linux/device/class.h>
  6. extern const struct class firmware_attributes_class;
  7. int fw_attributes_class_get(const struct class **fw_attr_class);
  8. int fw_attributes_class_put(void);
  9. #endif /* FW_ATTR_CLASS_H */