summaryrefslogtreecommitdiff
path: root/board
diff options
context:
space:
mode:
authorTorbjorn Svensson <torbjorn.x.svensson@stericsson.com>2011-01-19 12:31:57 +0100
committerMichael BRANDT <michael.brandt@stericsson.com>2011-01-20 09:40:09 +0100
commit209e97ea3f7b97bde1d1b5e7cbbf90f57416c01b (patch)
tree44f63f4258c5b0cbefba15fb73eb2f5b3e464d9c /board
parent64f2334f25adf74cb469b68e03ecf82e7f0d6318 (diff)
U8500: Display driver: Remove enable interrupts for mcde
Removes enable interrupts for mcde mistakenly inherited from the kernel code. Furthermore three printfs has been changed to debug. ST-Ericsson ID: ER320412 ST-Ericsson FOSS-OUT ID: Trivial Change-Id: Ifd68404ecf36b040166b900cd51f6d503e4d2ef6 Reviewed-on: http://gerrit.lud.stericsson.com/gerrit/12876 Tested-by: Torbjorn SVENSSON <torbjorn.x.svensson@stericsson.com> Reviewed-by: Anders BAUER <anders.bauer@stericsson.com> Reviewed-by: Michael BRANDT <michael.brandt@stericsson.com> Tested-by: Michael BRANDT <michael.brandt@stericsson.com>
Diffstat (limited to 'board')
-rw-r--r--board/st/u8500/mcde_hw.c16
1 files changed, 3 insertions, 13 deletions
diff --git a/board/st/u8500/mcde_hw.c b/board/st/u8500/mcde_hw.c
index 72e4596ae..650963458 100644
--- a/board/st/u8500/mcde_hw.c
+++ b/board/st/u8500/mcde_hw.c
@@ -1686,16 +1686,6 @@ void update_mcde_registers(struct mcde_platform_data *pdata)
MCDE_CONF0_OUTMUX4(pdata->outmux[4]) |
pdata->syncmux);
- /* Enable channel VCMP interrupts */
- mcde_wreg(MCDE_IMSCPP,
- MCDE_IMSCPP_VCMPAIM(true) |
- MCDE_IMSCPP_VCMPBIM(true) |
- MCDE_IMSCPP_VCMPC0IM(true) |
- MCDE_IMSCPP_VCMPC1IM(true));
-
- /* Enable overlay fetch done interrupts */
- mcde_wfld(MCDE_IMSCOVL, OVLFDIM, 0x3f);
-
/* Setup sync pulse length */
mcde_wreg(MCDE_VSCRC0,
MCDE_VSCRC0_VSPMIN(1) |
@@ -1713,7 +1703,7 @@ int mcde_probe(u8 num_dsilinks, struct mcde_platform_data *pdata)
u8 minor_version;
u8 development_version;
- printf("MCDE subsystem init begin\n");
+ debug("MCDE subsystem init begin\n");
if (!pdata) {
dev_dbg(&pdev->dev, "No platform data\n");
@@ -1723,7 +1713,7 @@ int mcde_probe(u8 num_dsilinks, struct mcde_platform_data *pdata)
dsiio = malloc(num_dsilinks * sizeof(*dsiio));
if (!dsiio) {
ret = -ENOMEM;
- printf("%s: Failed to malloc dsiio\n", __func__);
+ debug("%s: Failed to malloc dsiio\n", __func__);
goto failed_dsi_alloc;
}
@@ -1764,7 +1754,7 @@ int mcde_probe(u8 num_dsilinks, struct mcde_platform_data *pdata)
goto failed_hardware_version;
}
- printf("MCDE subsystem init done\n");
+ debug("MCDE subsystem init done\n");
return 0;
failed_hardware_version: