mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-16 02:14:58 +00:00
b2d2325661
Since commit 43a7206b0963 ("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 wpan_phy_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> Acked-by: Miquel Raynal <miquel.raynal@bootlin.com> Message-ID: <20240305-class_cleanup-wpan-v1-1-376f751fd481@marliere.net> [changed prefix from wifi to ieee802154 by stefan@datenfreihafen.org] Signed-off-by: Stefan Schmidt <stefan@datenfreihafen.org>
11 lines
239 B
C
11 lines
239 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __IEEE802154_SYSFS_H
|
|
#define __IEEE802154_SYSFS_H
|
|
|
|
int wpan_phy_sysfs_init(void);
|
|
void wpan_phy_sysfs_exit(void);
|
|
|
|
extern const struct class wpan_phy_class;
|
|
|
|
#endif /* __IEEE802154_SYSFS_H */
|