aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/plat-samsung
diff options
context:
space:
mode:
authorChoi jonghwan <jhbird.choi@samsung.com>2010-09-15 06:57:57 -0700
committerArve Hjønnevåg <arve@android.com>2011-11-17 17:45:49 -0800
commit2ffdccbfee01024b2f7dadafe37a63e06b12b926 (patch)
tree3bad3de2d1fbb109f3ef28c2e0f5e9404ec34c53 /arch/arm/plat-samsung
parent031dd818e8a1b809eca17bfb3d8523193528d74d (diff)
downloadkernel_samsung_crespo-2ffdccbfee01024b2f7dadafe37a63e06b12b926.zip
kernel_samsung_crespo-2ffdccbfee01024b2f7dadafe37a63e06b12b926.tar.gz
kernel_samsung_crespo-2ffdccbfee01024b2f7dadafe37a63e06b12b926.tar.bz2
S5PC11X: CLOCK Uart are find a clock with "dev" pointer.
Uart device a find a clock with "dev" pointer" Change-Id: I3da0fc3370a32b8a8df100e94b57a41bd01884fe Signed-off-by: Choi jonghwan <jhbird.choi@samsung.com>
Diffstat (limited to 'arch/arm/plat-samsung')
-rw-r--r--arch/arm/plat-samsung/dev-uart.c8
-rw-r--r--arch/arm/plat-samsung/include/plat/devs.h5
2 files changed, 9 insertions, 4 deletions
diff --git a/arch/arm/plat-samsung/dev-uart.c b/arch/arm/plat-samsung/dev-uart.c
index 5928105..6db1f63 100644
--- a/arch/arm/plat-samsung/dev-uart.c
+++ b/arch/arm/plat-samsung/dev-uart.c
@@ -19,19 +19,19 @@
/* uart devices */
-static struct platform_device s3c24xx_uart_device0 = {
+struct platform_device s3c24xx_uart_device0 = {
.id = 0,
};
-static struct platform_device s3c24xx_uart_device1 = {
+struct platform_device s3c24xx_uart_device1 = {
.id = 1,
};
-static struct platform_device s3c24xx_uart_device2 = {
+struct platform_device s3c24xx_uart_device2 = {
.id = 2,
};
-static struct platform_device s3c24xx_uart_device3 = {
+struct platform_device s3c24xx_uart_device3 = {
.id = 3,
};
diff --git a/arch/arm/plat-samsung/include/plat/devs.h b/arch/arm/plat-samsung/include/plat/devs.h
index bd5eee7..2e1b0a3 100644
--- a/arch/arm/plat-samsung/include/plat/devs.h
+++ b/arch/arm/plat-samsung/include/plat/devs.h
@@ -30,6 +30,11 @@ extern struct s3c24xx_uart_resources s5p_uart_resources[];
extern struct platform_device *s3c24xx_uart_devs[];
extern struct platform_device *s3c24xx_uart_src[];
+extern struct platform_device s3c24xx_uart_device0;
+extern struct platform_device s3c24xx_uart_device1;
+extern struct platform_device s3c24xx_uart_device2;
+extern struct platform_device s3c24xx_uart_device3;
+
extern struct platform_device s3c_device_timer[];
extern struct platform_device s3c64xx_device_iis0;