summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Clark <rob@ti.com>2012-11-09 16:45:51 +0000
committerAndrey Konovalov <andrey.konovalov@linaro.org>2013-01-18 17:20:18 +0400
commitfd61c95d5749a0ca452c607acfd800d741356a7c (patch)
treec14354aa8839d7fe7a763a28efb3bea77cfb885e
parentc47f0a04055667de076aacb549f198205dadc999 (diff)
drm/omap: fix typo, s/GET_OMAP_REVISION()/GET_OMAP_TYPE/tracking-llct-v3.8-misc-fixes-llct-20130121.0
The patch 'drm/omap: add support for ARCH_MULTIPLATFORM' had a small mistake, using GET_OMAP_REVISION() instead of GET_OMAP_TYPE. Signed-off-by: Rob Clark <rob@ti.com>
-rw-r--r--arch/arm/mach-omap2/drm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/drm.c b/arch/arm/mach-omap2/drm.c
index 4c7566c7e24a..2510971516a6 100644
--- a/arch/arm/mach-omap2/drm.c
+++ b/arch/arm/mach-omap2/drm.c
@@ -56,7 +56,7 @@ static int __init omap_init_drm(void)
oh->name);
}
- platform_data.omaprev = GET_OMAP_REVISION();
+ platform_data.omaprev = GET_OMAP_TYPE;
return platform_device_register(&omap_drm_device);