forked from Minki/linux
17b707fe5f
This offers shared code for registering the firmware_attributes_class, which is used by the Dell and Lenovo WMI management drivers. Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: Mark Pearson <markpearson@lenovo.com> Link: https://lore.kernel.org/r/20210530223111.25929-1-markpearson@lenovo.com Reviewed-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
12 lines
260 B
C
12 lines
260 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
/* Firmware attributes class helper module */
|
|
|
|
#ifndef FW_ATTR_CLASS_H
|
|
#define FW_ATTR_CLASS_H
|
|
|
|
int fw_attributes_class_get(struct class **fw_attr_class);
|
|
int fw_attributes_class_put(void);
|
|
|
|
#endif /* FW_ATTR_CLASS_H */
|