0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #include <linux/kernel.h>
0011 #include <linux/platform_device.h>
0012
0013 #include "devs.h"
0014
0015
0016
0017 static struct platform_device s3c24xx_uart_device0 = {
0018 .id = 0,
0019 };
0020
0021 static struct platform_device s3c24xx_uart_device1 = {
0022 .id = 1,
0023 };
0024
0025 static struct platform_device s3c24xx_uart_device2 = {
0026 .id = 2,
0027 };
0028
0029 static struct platform_device s3c24xx_uart_device3 = {
0030 .id = 3,
0031 };
0032
0033 struct platform_device *s3c24xx_uart_src[4] = {
0034 &s3c24xx_uart_device0,
0035 &s3c24xx_uart_device1,
0036 &s3c24xx_uart_device2,
0037 &s3c24xx_uart_device3,
0038 };
0039
0040 struct platform_device *s3c24xx_uart_devs[4] = {
0041 };