warnings: drivers/serial/serial_s3c24x0.c:47:26: warning: incorrect type in initializer (different address spaces) drivers/serial/serial_s3c24x0.c:47:26: expected void [noderef] <asn:2>*base drivers/serial/serial_s3c24x0.c:47:26: got void *priv drivers/serial/serial_s3c24x0.c:60:26: warning: incorrect type in initializer (different address spaces) drivers/serial/serial_s3c24x0.c:60:26: expected void [noderef] <asn:2>*base drivers/serial/serial_s3c24x0.c:60:26: got void *priv drivers/serial/serial_s3c24x0.c:84:26: warning: incorrect type in initializer (different address spaces) drivers/serial/serial_s3c24x0.c:84:26: expected void [noderef] <asn:2>*base drivers/serial/serial_s3c24x0.c:84:26: got void *priv drivers/serial/serial_s3c24x0.c:96:26: warning: incorrect type in initializer (different address spaces) drivers/serial/serial_s3c24x0.c:96:26: expected void [noderef] <asn:2>*base drivers/serial/serial_s3c24x0.c:96:26: got void *priv drivers/serial/serial_s3c24x0.c:108:26: warning: incorrect type in initializer (different address spaces) drivers/serial/serial_s3c24x0.c:108:26: expected void [noderef] <asn:2>*base drivers/serial/serial_s3c24x0.c:108:26: got void *priv drivers/serial/serial_s3c24x0.c:120:26: warning: incorrect type in initializer (different address spaces) drivers/serial/serial_s3c24x0.c:120:26: expected void [noderef] <asn:2>*base drivers/serial/serial_s3c24x0.c:120:26: got void *priv Signed-off-by: Marek Belisko <marek.belisko@xxxxxxxxxxxxxxx> --- drivers/serial/serial_s3c24x0.c | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/serial/serial_s3c24x0.c b/drivers/serial/serial_s3c24x0.c index 3a703b6..2fb2bb4 100644 --- a/drivers/serial/serial_s3c24x0.c +++ b/drivers/serial/serial_s3c24x0.c @@ -44,7 +44,7 @@ static int s3c24x0_serial_setbaudrate(struct console_device *cdev, int baudrate) { struct device_d *dev = cdev->dev; - void __iomem *base = dev->priv; + void __iomem *base = IOMEM(dev->priv); unsigned val; /* value is calculated so : PCLK / (16 * baudrate) -1 */ @@ -57,7 +57,7 @@ static int s3c24x0_serial_setbaudrate(struct console_device *cdev, int baudrate) static int s3c24x0_serial_init_port(struct console_device *cdev) { struct device_d *dev = cdev->dev; - void __iomem *base = dev->priv; + void __iomem *base = IOMEM(dev->priv); /* FIFO enable, Tx/Rx FIFO clear */ writeb(0x07, base + UFCON); @@ -81,7 +81,7 @@ static int s3c24x0_serial_init_port(struct console_device *cdev) static void s3c24x0_serial_putc(struct console_device *cdev, char c) { struct device_d *dev = cdev->dev; - void __iomem *base = dev->priv; + void __iomem *base = IOMEM(dev->priv); /* Wait for Tx FIFO not full */ while (!(readb(base + UTRSTAT) & 0x2)) @@ -93,7 +93,7 @@ static void s3c24x0_serial_putc(struct console_device *cdev, char c) static int s3c24x0_serial_tstc(struct console_device *cdev) { struct device_d *dev = cdev->dev; - void __iomem *base = dev->priv; + void __iomem *base = IOMEM(dev->priv); /* If receive fifo is empty, return false */ if (readb(base + UTRSTAT) & 0x1) @@ -105,7 +105,7 @@ static int s3c24x0_serial_tstc(struct console_device *cdev) static int s3c24x0_serial_getc(struct console_device *cdev) { struct device_d *dev = cdev->dev; - void __iomem *base = dev->priv; + void __iomem *base = IOMEM(dev->priv); /* wait for a character */ while (!(readb(base + UTRSTAT) & 0x1)) @@ -117,7 +117,7 @@ static int s3c24x0_serial_getc(struct console_device *cdev) static void s3c24x0_serial_flush(struct console_device *cdev) { struct device_d *dev = cdev->dev; - void __iomem *base = dev->priv; + void __iomem *base = IOMEM(dev->priv); while (!(readb(base + UTRSTAT) & 0x4)) ; -- 1.7.4.1 _______________________________________________ barebox mailing list barebox@xxxxxxxxxxxxxxxxxxx http://lists.infradead.org/mailman/listinfo/barebox