From: Neil Armstrong Date: Thu, 2 Feb 2017 09:47:44 +0000 (+0100) Subject: drm: meson: rename driver name to meson-drm X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=8aaacbc0e5c729baa1dbae26f77755c96a23096e;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git 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 Acked-by: Daniel Vetter Link: http://patchwork.freedesktop.org/patch/msgid/1486028864-19622-3-git-send-email-narmstrong@baylibre.com --- 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 = { .probe = meson_drv_probe, .remove = meson_drv_remove, .driver = { - .owner = THIS_MODULE, - .name = DRIVER_NAME, + .name = "meson-drm", .of_match_table = dt_match, }, };