Skip to content

Commit aa707b6

Browse files
rbmarliereliuw
authored andcommitted
Drivers: hv: vmbus: make hv_bus const
Now that the driver core can properly handle constant struct bus_type, move the hv_bus 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> Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Reviewed-by: Michael Kelley <mhklinux@outlook.com> Link: https://lore.kernel.org/r/20240204-bus_cleanup-hv-v1-1-521bd4140673@marliere.net Signed-off-by: Wei Liu <wei.liu@kernel.org> Message-ID: <20240204-bus_cleanup-hv-v1-1-521bd4140673@marliere.net>
1 parent 0d63e4c commit aa707b6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/hv/vmbus_drv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -988,7 +988,7 @@ static const struct dev_pm_ops vmbus_pm = {
988988
};
989989

990990
/* The one and only one */
991-
static struct bus_type hv_bus = {
991+
static const struct bus_type hv_bus = {
992992
.name = "vmbus",
993993
.match = vmbus_match,
994994
.shutdown = vmbus_shutdown,

0 commit comments

Comments
 (0)