mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 14:53:58 -04:00
driver core: module: make module_[add|remove]_driver take a const *
The functions module_add_driver() and module_remove_driver() do not modify the struct device_driver structure directly, so they are safe to be marked as a constant pointer type. Cc: "Rafael J. Wysocki" <rafael@kernel.org> Link: https://lore.kernel.org/r/2024070850-entering-grandson-205e@gregkh Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
@@ -192,8 +192,8 @@ extern struct kset *devices_kset;
|
||||
void devices_kset_move_last(struct device *dev);
|
||||
|
||||
#if defined(CONFIG_MODULES) && defined(CONFIG_SYSFS)
|
||||
int module_add_driver(struct module *mod, struct device_driver *drv);
|
||||
void module_remove_driver(struct device_driver *drv);
|
||||
int module_add_driver(struct module *mod, const struct device_driver *drv);
|
||||
void module_remove_driver(const struct device_driver *drv);
|
||||
#else
|
||||
static inline int module_add_driver(struct module *mod,
|
||||
struct device_driver *drv)
|
||||
|
||||
Reference in New Issue
Block a user