summaryrefslogtreecommitdiffstats
path: root/drivers/video
diff options
context:
space:
mode:
authorLucas Stach <dev@lynxeye.de>2014-10-20 20:15:55 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2014-10-21 13:02:48 +0200
commitc677976c07676024c1bd1eb0058128611b96ecbd (patch)
tree4b9682080e44ab64966aa785361e5a6c29d1ab0c /drivers/video
parentd8f5a28be3e6a671bc257b479cf54953d8d4a3c6 (diff)
downloadbarebox-c677976c07676024c1bd1eb0058128611b96ecbd.tar.gz
barebox-c677976c07676024c1bd1eb0058128611b96ecbd.tar.xz
imx: ipu-v3: fix typo leading to build warning
This PAGE_SIZE clearly should not be there. Signed-off-by: Lucas Stach <dev@lynxeye.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers/video')
-rw-r--r--drivers/video/imx-ipu-v3/ipu-common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/imx-ipu-v3/ipu-common.c b/drivers/video/imx-ipu-v3/ipu-common.c
index c60236343a..f13cf012a1 100644
--- a/drivers/video/imx-ipu-v3/ipu-common.c
+++ b/drivers/video/imx-ipu-v3/ipu-common.c
@@ -796,7 +796,7 @@ static int ipu_probe(struct device_d *dev)
dev_dbg(dev, "vdi: 0x%p\n",
ipu_base + devtype->vdi_ofs);
- ipu->cm_reg = ipu_base + devtype->cm_ofs, PAGE_SIZE;
+ ipu->cm_reg = ipu_base + devtype->cm_ofs;
ipu->idmac_reg = ipu_base + devtype->cm_ofs + IPU_CM_IDMAC_REG_OFS;
ipu->cpmem_base = ipu_base + devtype->cpmem_ofs;