Since commit 43a7206b09
("driver core: class: make class_register() take
a const *"), the driver core allows for struct class to be in read-only
memory, so move the fw_attr_class structure to be declared at build time
placing it into read-only memory, instead of having to be dynamically
allocated at boot time.
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Suggested-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: "Ricardo B. Marliere" <ricardo@marliere.net>
Link: https://lore.kernel.org/r/20240305-class_cleanup-platform-v1-1-9085c97b9355@marliere.net
Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
Signed-off-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
11 lines
266 B
C
11 lines
266 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(const struct class **fw_attr_class);
|
|
int fw_attributes_class_put(void);
|
|
|
|
#endif /* FW_ATTR_CLASS_H */
|