platform/x86: firmware_attributes_class: Move include linux/device/class.h

[ Upstream commit d0eee1be379204d2ee6cdb09bd98b3fd0165b6d3 ]

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>
Stable-dep-of: 5ff1fbb30597 ("platform/x86: think-lmi: Fix class device unregistration")
Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
Thomas Weißschuh
2025-01-04 00:05:09 +01:00
committed by Greg Kroah-Hartman
parent 9143d22a09
commit e52b896d5f
2 changed files with 2 additions and 1 deletions

View File

@@ -3,7 +3,6 @@
/* Firmware attributes class helper module */ /* Firmware attributes class helper module */
#include <linux/mutex.h> #include <linux/mutex.h>
#include <linux/device/class.h>
#include <linux/module.h> #include <linux/module.h>
#include "firmware_attributes_class.h" #include "firmware_attributes_class.h"

View File

@@ -5,6 +5,8 @@
#ifndef FW_ATTR_CLASS_H #ifndef FW_ATTR_CLASS_H
#define 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_get(const struct class **fw_attr_class);
int fw_attributes_class_put(void); int fw_attributes_class_put(void);