aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-mmp/include
diff options
context:
space:
mode:
authorTanmay Upadhyay <tanmay.upadhyay@einfochips.com>2011-05-02 11:29:58 +0530
committerEric Miao <eric.y.miao@gmail.com>2011-07-12 19:50:35 +0800
commit26407f818e62a88ac9cee64f250ec844fb079862 (patch)
treee519a5509b075cbe1c47e2871f6ddf279cd500db /arch/arm/mach-mmp/include
parent41646b24993590c49d21e6cc0f4378505e1f94a6 (diff)
downloadkernel_samsung_smdk4412-26407f818e62a88ac9cee64f250ec844fb079862.zip
kernel_samsung_smdk4412-26407f818e62a88ac9cee64f250ec844fb079862.tar.gz
kernel_samsung_smdk4412-26407f818e62a88ac9cee64f250ec844fb079862.tar.bz2
ARM: pxa168: Add support for UART3
PXA168 has 3 onchip UARTs. Added support for the third one Signed-off-by: Tanmay Upadhyay <tanmay.upadhyay@einfochips.com> Signed-off-by: Eric Miao <eric.y.miao@gmail.com>
Diffstat (limited to 'arch/arm/mach-mmp/include')
-rw-r--r--arch/arm/mach-mmp/include/mach/pxa168.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-mmp/include/mach/pxa168.h b/arch/arm/mach-mmp/include/mach/pxa168.h
index a52b3d2..705e963 100644
--- a/arch/arm/mach-mmp/include/mach/pxa168.h
+++ b/arch/arm/mach-mmp/include/mach/pxa168.h
@@ -17,6 +17,7 @@ extern void pxa168_clear_keypad_wakeup(void);
extern struct pxa_device_desc pxa168_device_uart1;
extern struct pxa_device_desc pxa168_device_uart2;
+extern struct pxa_device_desc pxa168_device_uart3;
extern struct pxa_device_desc pxa168_device_twsi0;
extern struct pxa_device_desc pxa168_device_twsi1;
extern struct pxa_device_desc pxa168_device_pwm1;
@@ -39,6 +40,7 @@ static inline int pxa168_add_uart(int id)
switch (id) {
case 1: d = &pxa168_device_uart1; break;
case 2: d = &pxa168_device_uart2; break;
+ case 3: d = &pxa168_device_uart3; break;
}
if (d == NULL)