powerpc: vio: make vio_bus_type const
authorRicardo B. Marliere <ricardo@marliere.net>
Mon, 12 Feb 2024 20:05:00 +0000 (17:05 -0300)
committerMichael Ellerman <mpe@ellerman.id.au>
Wed, 14 Feb 2024 13:14:06 +0000 (00:14 +1100)
Since commit d492cc2573a0 ("driver core: device.h: make struct
bus_type a const *"), the driver core can properly handle constant
struct bus_type, move the vio_bus_type variable to be a constant
structure as well, placing it into read-only memory which can not be
modified at runtime.

Suggested-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: "Ricardo B. Marliere" <ricardo@marliere.net>
Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://msgid.link/20240212-bus_cleanup-powerpc2-v2-2-8441b3f77827@marliere.net
arch/powerpc/include/asm/vio.h
arch/powerpc/platforms/pseries/vio.c

index cc9b787627adbc2104fd9edf3e3f84f8456f0cfa..6faf2a9317552eeed67b5f942bc0a363a58db9a9 100644 (file)
@@ -39,7 +39,7 @@
  */
 #define VIO_CMO_MIN_ENT 1562624
 
-extern struct bus_type vio_bus_type;
+extern const struct bus_type vio_bus_type;
 
 struct iommu_table;
 
index 6c58824190a2f0b0bae1beab31c2a95d751ea7e3..90ff85c879bfe9bbc602fbc146a50fa5d933424a 100644 (file)
@@ -1615,7 +1615,7 @@ static struct attribute *vio_cmo_dev_attrs[] = {
 };
 ATTRIBUTE_GROUPS(vio_cmo_dev);
 
-struct bus_type vio_bus_type = {
+const struct bus_type vio_bus_type = {
        .name = "vio",
        .dev_groups = vio_cmo_dev_groups,
        .bus_groups = vio_bus_groups,
@@ -1634,7 +1634,7 @@ static struct attribute *vio_dev_attrs[] = {
 };
 ATTRIBUTE_GROUPS(vio_dev);
 
-struct bus_type vio_bus_type = {
+const struct bus_type vio_bus_type = {
        .name = "vio",
        .dev_groups = vio_dev_groups,
        .uevent = vio_hotplug,