12 #include <linux/kernel.h>
13 #include <linux/types.h>
15 #include <linux/list.h>
21 #include <mach/hardware.h>
28 static struct resource s5p_uart0_resource[] = {
33 static struct resource s5p_uart1_resource[] = {
38 static struct resource s5p_uart2_resource[] = {
43 static struct resource s5p_uart3_resource[] = {
44 #if CONFIG_SERIAL_SAMSUNG_UARTS > 3
50 static struct resource s5p_uart4_resource[] = {
51 #if CONFIG_SERIAL_SAMSUNG_UARTS > 4
57 static struct resource s5p_uart5_resource[] = {
58 #if CONFIG_SERIAL_SAMSUNG_UARTS > 5
66 .resources = s5p_uart0_resource,
67 .nr_resources =
ARRAY_SIZE(s5p_uart0_resource),
70 .resources = s5p_uart1_resource,
71 .nr_resources =
ARRAY_SIZE(s5p_uart1_resource),
74 .resources = s5p_uart2_resource,
75 .nr_resources =
ARRAY_SIZE(s5p_uart2_resource),
78 .resources = s5p_uart3_resource,
79 .nr_resources =
ARRAY_SIZE(s5p_uart3_resource),
82 .resources = s5p_uart4_resource,
83 .nr_resources =
ARRAY_SIZE(s5p_uart4_resource),
86 .resources = s5p_uart5_resource,
87 .nr_resources =
ARRAY_SIZE(s5p_uart5_resource),