From 28eb41dd719d26bee49adf34a85e7793f88b70be Mon Sep 17 00:00:00 2001 From: Russell King Date: Sat, 13 Nov 2004 16:01:38 +0000 Subject: [SERIAL] Add sparse __iomem annotations. --- include/linux/serial_core.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/linux') diff --git a/include/linux/serial_core.h b/include/linux/serial_core.h index bba805dd7a39..ae0b9948c269 100644 --- a/include/linux/serial_core.h +++ b/include/linux/serial_core.h @@ -171,7 +171,7 @@ struct uart_icount { struct uart_port { spinlock_t lock; /* port lock */ unsigned int iobase; /* in/out[bwl] */ - char *membase; /* read/write[bwl] */ + unsigned char __iomem *membase; /* read/write[bwl] */ unsigned int irq; /* irq number */ unsigned int uartclk; /* base uart clock */ unsigned char fifosize; /* tx fifo size */ -- cgit v1.2.3 From 4b355b37533a900531a02df6e8714a2838033018 Mon Sep 17 00:00:00 2001 From: Ben Dooks Date: Sat, 13 Nov 2004 18:56:57 +0000 Subject: [ARM PATCH] 2237/1: S3C2410 - new serial driver - update serial_core.h (4/4) Patch from Ben Dooks Add PORT_S3C2440 to include/linux/serial_core.h Signed-off-by: Ben Dooks Signed-off-by: Russell King --- include/linux/serial_core.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/linux') diff --git a/include/linux/serial_core.h b/include/linux/serial_core.h index ae0b9948c269..3fad76b0873c 100644 --- a/include/linux/serial_core.h +++ b/include/linux/serial_core.h @@ -94,6 +94,9 @@ /*IBM icom*/ #define PORT_ICOM 60 +/* Samsung S3C2440 SoC */ +#define PORT_S3C2440 61 + #ifdef __KERNEL__ #include -- cgit v1.2.3