]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drm/stm: drv: Rename platform driver name
authorPhilippe CORNU <philippe.cornu@st.com>
Thu, 20 Jul 2017 12:05:51 +0000 (14:05 +0200)
committerBenjamin Gaignard <benjamin.gaignard@linaro.org>
Wed, 26 Jul 2017 13:01:24 +0000 (15:01 +0200)
Rename the platform driver name from "stm" to "stm32-display"
for a better readability in /sys/bus/platform/drivers entries.

Note: We keep "stm" as drm_driver.name because it is better
when using "modetest -M stm ..." (even if recent modetest patch
avoids using -M).

Signed-off-by: Philippe CORNU <philippe.cornu@st.com>
Reviewed-by: Benjamin Gaignard <benjamin.gaignard@linaro.org>
Signed-off-by: Benjamin Gaignard <benjamin.gaignard@linaro.org>
Link: https://patchwork.freedesktop.org/patch/msgid/1500552357-29487-2-git-send-email-philippe.cornu@st.com
drivers/gpu/drm/stm/drv.c

index 83ab48f1fd0087f7b26572b3ed11bc7f8736fbcd..095971f0aef36f6b2158e03b3126141f8b986e78 100644 (file)
 
 #include "ltdc.h"
 
-#define DRIVER_NAME            "stm"
-#define DRIVER_DESC            "STMicroelectronics SoC DRM"
-#define DRIVER_DATE            "20170330"
-#define DRIVER_MAJOR           1
-#define DRIVER_MINOR           0
-#define DRIVER_PATCH_LEVEL     0
-
 #define STM_MAX_FB_WIDTH       2048
 #define STM_MAX_FB_HEIGHT      2048 /* same as width to handle orientation */
 
@@ -59,12 +52,12 @@ static struct drm_driver drv_driver = {
        .driver_features = DRIVER_MODESET | DRIVER_GEM | DRIVER_PRIME |
                           DRIVER_ATOMIC,
        .lastclose = drv_lastclose,
-       .name = DRIVER_NAME,
-       .desc = DRIVER_DESC,
-       .date = DRIVER_DATE,
-       .major = DRIVER_MAJOR,
-       .minor = DRIVER_MINOR,
-       .patchlevel = DRIVER_PATCH_LEVEL,
+       .name = "stm",
+       .desc = "STMicroelectronics SoC DRM",
+       .date = "20170330",
+       .major = 1,
+       .minor = 0,
+       .patchlevel = 0,
        .fops = &drv_driver_fops,
        .dumb_create = drm_gem_cma_dumb_create,
        .dumb_map_offset = drm_gem_cma_dumb_map_offset,
@@ -206,7 +199,7 @@ static struct platform_driver stm_drm_platform_driver = {
        .probe = stm_drm_platform_probe,
        .remove = stm_drm_platform_remove,
        .driver = {
-               .name = DRIVER_NAME,
+               .name = "stm32-display",
                .of_match_table = drv_dt_ids,
        },
 };