summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHemant Hariyani <hemanthariyani@ti.com>2011-09-01 08:10:37 +0100
committerAndy Green <andy.green@linaro.org>2011-09-01 08:10:37 +0100
commit6f203b6355620ce4277d42dc9fe3421e7e4dd0c7 (patch)
treecbc591ef2a903501992d62b66c083f29f24aca04
parentd164b1df919634855dc36b09ecf2e5e53cccd9af (diff)
Kernel changes for hwmod and omap_device initialization for GPU.
Change-Id: I4bd96e76af31d0991ce9e67b0c499f0d6f39a1a8 Signed-off-by: Ricardo Salveti de Araujo <ricardo.salveti@canonical.com>
-rw-r--r--arch/arm/mach-omap2/devices.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/arch/arm/mach-omap2/devices.c b/arch/arm/mach-omap2/devices.c
index 556ab19c782..87b695b807f 100644
--- a/arch/arm/mach-omap2/devices.c
+++ b/arch/arm/mach-omap2/devices.c
@@ -707,7 +707,7 @@ static void omap_init_vout(void)
static inline void omap_init_vout(void) {}
#endif
-static struct omap_device_pm_latency omap_gpu_latency[] = {
+static struct omap_device_pm_latency omap_drm_latency[] = {
[0] = {
.deactivate_func = omap_device_idle_hwmods,
.activate_func = omap_device_enable_hwmods,
@@ -725,15 +725,15 @@ static void omap_init_gpu(void)
{
struct omap_hwmod *oh;
struct omap_device *od;
- int max_omap_gpu_hwmod_name_len = 16;
- char oh_name[max_omap_gpu_hwmod_name_len];
+ int max_omap_drm_hwmod_name_len = 16;
+ char oh_name[max_omap_drm_hwmod_name_len];
int l;
struct gpu_platform_data *pdata;
- char *name = "pvrsrvkm";
+ char *name = "omapdrm_pvr";
- l = snprintf(oh_name, max_omap_gpu_hwmod_name_len,
+ l = snprintf(oh_name, max_omap_drm_hwmod_name_len,
"gpu");
- WARN(l >= max_omap_gpu_hwmod_name_len,
+ WARN(l >= max_omap_drm_hwmod_name_len,
"String buffer overflow in GPU device setup\n");
oh = omap_hwmod_lookup(oh_name);
@@ -756,7 +756,7 @@ static void omap_init_gpu(void)
od = omap_device_build(name, 0, oh, pdata,
sizeof(struct gpu_platform_data),
- omap_gpu_latency, ARRAY_SIZE(omap_gpu_latency), 0);
+ omap_drm_latency, ARRAY_SIZE(omap_drm_latency), 0);
WARN(IS_ERR(od), "Could not build omap_device for %s %s\n",
name, oh_name);