aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeil Armstrong <narmstrong@baylibre.com>2017-02-02 04:47:44 -0500
committerNeil Armstrong <narmstrong@baylibre.com>2017-02-02 09:19:56 -0500
commit8aaacbc0e5c729baa1dbae26f77755c96a23096e (patch)
tree2085a3c03a66c744749002e21bcbf36e55c37840
parent3e6e2fd5531c6c028f444de8fcb255738c9c3f9b (diff)
drm: meson: rename driver name to meson-drm
The platform driver name is currently "meson" which can lead to some confusion, this patch renames it to "meson-drm" and removes the owner attribute since is always added by __platform_driver_register called by the module_platform_driver() macro. Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> Acked-by: Daniel Vetter <daniel@ffwll.ch> Link: http://patchwork.freedesktop.org/patch/msgid/1486028864-19622-3-git-send-email-narmstrong@baylibre.com
-rw-r--r--drivers/gpu/drm/meson/meson_drv.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/gpu/drm/meson/meson_drv.c b/drivers/gpu/drm/meson/meson_drv.c
index ff1f6019b97b..380bde7fce16 100644
--- a/drivers/gpu/drm/meson/meson_drv.c
+++ b/drivers/gpu/drm/meson/meson_drv.c
@@ -329,8 +329,7 @@ static struct platform_driver meson_drm_platform_driver = {
329 .probe = meson_drv_probe, 329 .probe = meson_drv_probe,
330 .remove = meson_drv_remove, 330 .remove = meson_drv_remove,
331 .driver = { 331 .driver = {
332 .owner = THIS_MODULE, 332 .name = "meson-drm",
333 .name = DRIVER_NAME,
334 .of_match_table = dt_match, 333 .of_match_table = dt_match,
335 }, 334 },
336}; 335};