Skip to content

Commit 079431e

Browse files
rbmarliereandreas-gaisler
authored andcommitted
sparc: vio: make vio_bus_type const
Now that 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. Cc: Greg Kroah-Hartman <[email protected]> Suggested-by: Greg Kroah-Hartman <[email protected]> Signed-off-by: Ricardo B. Marliere <[email protected]> Reviewed-by: Greg Kroah-Hartman <[email protected]> Acked-by: Sam Ravnborg <[email protected]> Signed-off-by: Andreas Larsson <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent 3cc208f commit 079431e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/sparc/kernel/vio.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ static struct attribute *vio_dev_attrs[] = {
149149
};
150150
ATTRIBUTE_GROUPS(vio_dev);
151151

152-
static struct bus_type vio_bus_type = {
152+
static const struct bus_type vio_bus_type = {
153153
.name = "vio",
154154
.dev_groups = vio_dev_groups,
155155
.uevent = vio_hotplug,

0 commit comments

Comments
 (0)