mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-25 19:42:19 +00:00
The header firmware_attributes_class.h uses 'struct class'. It should also include the necessary dependency header. Signed-off-by: Thomas Weißschuh <linux@weissschuh.net> Reviewed-by: Armin Wolf <W_Armin@gmx.de> Reviewed-by: Mario Limonciello <mario.limonciello@amd.com> Reviewed-by: Mark Pearson <mpearson-lenovo@squebb.ca> Tested-by: Mark Pearson <mpearson-lenovo@squebb.ca> Link: https://lore.kernel.org/r/20250104-firmware-attributes-simplify-v1-1-949f9709e405@weissschuh.net Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
14 lines
299 B
C
14 lines
299 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
/* Firmware attributes class helper module */
|
|
|
|
#ifndef FW_ATTR_CLASS_H
|
|
#define FW_ATTR_CLASS_H
|
|
|
|
#include <linux/device/class.h>
|
|
|
|
int fw_attributes_class_get(const struct class **fw_attr_class);
|
|
int fw_attributes_class_put(void);
|
|
|
|
#endif /* FW_ATTR_CLASS_H */
|