1 diff -urN linux-2.6.19.2/drivers/serial/Kconfig linux-2.6.19.2-adm5120/drivers/serial/Kconfig
2 --- linux-2.6.19.2/drivers/serial/Kconfig 2007-01-10 20:10:37.000000000 +0100
3 +++ linux-2.6.19.2-adm5120/drivers/serial/Kconfig 2007-01-23 01:13:39.000000000 +0100
6 comment "Non-8250 serial port support"
9 + bool "ADM5120 serial port support"
10 + depends on MIPS_ADM5120
12 + select SERIAL_CORE_CONSOLE
14 + Driver for the on chip UARTs on the ADM5120 SoC
16 +config ADM5120_NR_UARTS
17 + int "Maximum number of ADM5120 serial ports"
18 + depends on SERIAL_ADM5120
21 + Set this to the number of serial ports you want the driver to
24 config SERIAL_AMBA_PL010
25 tristate "ARM AMBA PL010 serial port support"
26 depends on ARM_AMBA && (BROKEN || !ARCH_VERSATILE)
27 diff -urN linux-2.6.19.2/drivers/serial/Makefile linux-2.6.19.2-adm5120/drivers/serial/Makefile
28 --- linux-2.6.19.2/drivers/serial/Makefile 2007-01-10 20:10:37.000000000 +0100
29 +++ linux-2.6.19.2-adm5120/drivers/serial/Makefile 2007-01-23 01:21:45.000000000 +0100
31 obj-$(CONFIG_SERIAL_8250_HUB6) += 8250_hub6.o
32 obj-$(CONFIG_SERIAL_8250_MCA) += 8250_mca.o
33 obj-$(CONFIG_SERIAL_8250_AU1X00) += 8250_au1x00.o
34 +obj-$(CONFIG_SERIAL_ADM5120) += adm5120_uart.o
35 obj-$(CONFIG_SERIAL_AMBA_PL010) += amba-pl010.o
36 obj-$(CONFIG_SERIAL_AMBA_PL011) += amba-pl011.o
37 obj-$(CONFIG_SERIAL_CLPS711X) += clps711x.o
38 diff -urN linux-2.6.19.2/include/linux/serial_core.h linux-2.6.19.2-adm5120/include/linux/serial_core.h
39 --- linux-2.6.19.2/include/linux/serial_core.h 2007-01-10 20:10:37.000000000 +0100
40 +++ linux-2.6.19.2-adm5120/include/linux/serial_core.h 2007-01-23 01:13:39.000000000 +0100
42 #define PORT_S3C2412 73
45 +/* ADMtek ADM5120 SoC */
46 +#define PORT_ADM5120 68
50 #include <linux/compiler.h>