drm: mipi-dsi: make mipi_dsi_bus_type const
authorRicardo B. Marliere <ricardo@marliere.net>
Sat, 3 Feb 2024 18:25:04 +0000 (15:25 -0300)
committerDmitry Baryshkov <dmitry.baryshkov@linaro.org>
Wed, 7 Feb 2024 10:35:10 +0000 (12:35 +0200)
Now that the driver core can properly handle constant struct bus_type,
move the mipi_dsi_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>
Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Link: https://lore.kernel.org/r/20240203-bus_cleanup-gpu-v1-2-1b6ecdb5f941@marliere.net
Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20240203-bus_cleanup-gpu-v1-2-1b6ecdb5f941@marliere.net
drivers/gpu/drm/drm_mipi_dsi.c

index 843a6dbda93a07724ce3271584746c34ffd29747..ef6e416522f8a96f3216546541fc4e2b7fbbb0d2 100644 (file)
@@ -89,7 +89,7 @@ static const struct dev_pm_ops mipi_dsi_device_pm_ops = {
        .restore = pm_generic_restore,
 };
 
-static struct bus_type mipi_dsi_bus_type = {
+static const struct bus_type mipi_dsi_bus_type = {
        .name = "mipi-dsi",
        .match = mipi_dsi_device_match,
        .uevent = mipi_dsi_uevent,