From: Marek Szyprowski Date: Mon, 5 Mar 2012 11:02:30 +0000 (+0100) Subject: drm/exynos: use correct 'exynos-drm' name for platform device X-Git-Tag: accepted/tizen/common/20141203.182822~5135^2^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9866b6c64b317a92e5c020165bc41efd3008a88a;p=platform%2Fkernel%2Flinux-arm64.git drm/exynos: use correct 'exynos-drm' name for platform device Currently Exynos DRM driver uses DRIVER_NAME ('exynos') name for the core platform device. This is confusing, because it doesn't refer to the function the platform device is performing. This patch renames the platform device to the 'exynos-drm', which matches the convention for naming the platform devices. The name used inside DRM subsystem has not been changed. Signed-off-by: Marek Szyprowski Signed-off-by: Inki Dae Signed-off-by: Kyungmin Park --- diff --git a/drivers/gpu/drm/exynos/exynos_drm_drv.c b/drivers/gpu/drm/exynos/exynos_drm_drv.c index 58820eb..09cc13f 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_drv.c +++ b/drivers/gpu/drm/exynos/exynos_drm_drv.c @@ -246,7 +246,7 @@ static struct platform_driver exynos_drm_platform_driver = { .remove = __devexit_p(exynos_drm_platform_remove), .driver = { .owner = THIS_MODULE, - .name = DRIVER_NAME, + .name = "exynos-drm", }, };