aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-mmp/include
diff options
context:
space:
mode:
authorMark F. Brown <mark.brown314@gmail.com>2010-08-25 23:51:54 -0400
committerEric Miao <eric.y.miao@gmail.com>2010-10-08 16:21:17 +0800
commit58cf68b88ce3fc48e345e756c07770e1d6e4cbe9 (patch)
treea385bb20b90d5d1a863f25212a96d10a60739dd5 /arch/arm/mach-mmp/include
parent6ac6b817f3f4c23c5febd960d8deb343e13af5f3 (diff)
downloadkernel_samsung_smdk4412-58cf68b88ce3fc48e345e756c07770e1d6e4cbe9.zip
kernel_samsung_smdk4412-58cf68b88ce3fc48e345e756c07770e1d6e4cbe9.tar.gz
kernel_samsung_smdk4412-58cf68b88ce3fc48e345e756c07770e1d6e4cbe9.tar.bz2
ARM: pxa168: added framebuffer support code
Signed-off-by: Mark F. Brown <mark.brown314@gmail.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.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/arch/arm/mach-mmp/include/mach/pxa168.h b/arch/arm/mach-mmp/include/mach/pxa168.h
index 27e1bc7..220738f 100644
--- a/arch/arm/mach-mmp/include/mach/pxa168.h
+++ b/arch/arm/mach-mmp/include/mach/pxa168.h
@@ -10,6 +10,7 @@ extern void __init pxa168_init_irq(void);
#include <mach/devices.h>
#include <plat/i2c.h>
#include <plat/pxa3xx_nand.h>
+#include <video/pxa168fb.h>
extern struct pxa_device_desc pxa168_device_uart1;
extern struct pxa_device_desc pxa168_device_uart2;
@@ -25,6 +26,7 @@ extern struct pxa_device_desc pxa168_device_ssp3;
extern struct pxa_device_desc pxa168_device_ssp4;
extern struct pxa_device_desc pxa168_device_ssp5;
extern struct pxa_device_desc pxa168_device_nand;
+extern struct pxa_device_desc pxa168_device_fb;
static inline int pxa168_add_uart(int id)
{
@@ -97,4 +99,10 @@ static inline int pxa168_add_nand(struct pxa3xx_nand_platform_data *info)
{
return pxa_register_device(&pxa168_device_nand, info, sizeof(*info));
}
+
+static inline int pxa168_add_fb(struct pxa168fb_mach_info *mi)
+{
+ return pxa_register_device(&pxa168_device_fb, mi, sizeof(*mi));
+}
+
#endif /* __ASM_MACH_PXA168_H */