[PATCH] EISA: make eisa_bus_type const

Ricardo B. Marliere posted 1 patch 1 year, 12 months ago
drivers/eisa/eisa-bus.c | 2 +-
include/linux/eisa.h    | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
[PATCH] EISA: make eisa_bus_type const
Posted by Ricardo B. Marliere 1 year, 12 months ago
Now that the driver core can properly handle constant struct bus_type,
move the eisa_bus_type variable to be a constant structure as well,
placing it into read-only memory which can not be modified at runtime.

Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Suggested-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Ricardo B. Marliere <ricardo@marliere.net>
---
 drivers/eisa/eisa-bus.c | 2 +-
 include/linux/eisa.h    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/eisa/eisa-bus.c b/drivers/eisa/eisa-bus.c
index 33f0ba11c6ad..a7723536412a 100644
--- a/drivers/eisa/eisa-bus.c
+++ b/drivers/eisa/eisa-bus.c
@@ -135,7 +135,7 @@ static int eisa_bus_uevent(const struct device *dev, struct kobj_uevent_env *env
 	return 0;
 }
 
-struct bus_type eisa_bus_type = {
+const struct bus_type eisa_bus_type = {
 	.name  = "eisa",
 	.match = eisa_bus_match,
 	.uevent = eisa_bus_uevent,
diff --git a/include/linux/eisa.h b/include/linux/eisa.h
index b012e30afebd..7277d450e092 100644
--- a/include/linux/eisa.h
+++ b/include/linux/eisa.h
@@ -65,7 +65,7 @@ struct eisa_driver {
 /* These external functions are only available when EISA support is enabled. */
 #ifdef CONFIG_EISA
 
-extern struct bus_type eisa_bus_type;
+extern const struct bus_type eisa_bus_type;
 int eisa_driver_register (struct eisa_driver *edrv);
 void eisa_driver_unregister (struct eisa_driver *edrv);
 

---
base-commit: 047371968ffc470769f541d6933e262dc7085456
change-id: 20240210-bus_cleanup-eisa-e650731e86c5

Best regards,
-- 
Ricardo B. Marliere <ricardo@marliere.net>