From: Richard Purdie Date: Tue, 6 Sep 2005 22:19:07 +0000 (-0700) Subject: [PATCH] Corgi: Add keyboard and touchscreen device definitions X-Git-Tag: v2.6.14-rc1~578 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f7ceff348bbd2ef35b5bc2ab47541dcac4b0b8ea;p=linux-2.6 [PATCH] Corgi: Add keyboard and touchscreen device definitions Add keyboard and touchscreen device definitions for corgi. Signed-off-by: Richard Purdie Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/arch/arm/mach-pxa/corgi.c b/arch/arm/mach-pxa/corgi.c index 453be29485..47da9fe57a 100644 --- a/arch/arm/mach-pxa/corgi.c +++ b/arch/arm/mach-pxa/corgi.c @@ -107,6 +107,27 @@ static struct platform_device corgibl_device = { }; +/* + * Corgi Keyboard Device + */ +static struct platform_device corgikbd_device = { + .name = "corgi-keyboard", + .id = -1, +}; + + +/* + * Corgi Touch Screen Device + */ +static struct platform_device corgits_device = { + .name = "corgi-ts", + .dev = { + .parent = &corgissp_device.dev, + }, + .id = -1, +}; + + /* * MMC/SD Device * @@ -183,6 +204,7 @@ static struct pxamci_platform_data corgi_mci_platform_data = { }; + /* * USB Device Controller */ @@ -208,7 +230,9 @@ static struct platform_device *devices[] __initdata = { &corgiscoop_device, &corgissp_device, &corgifb_device, + &corgikbd_device, &corgibl_device, + &corgits_device, }; static void __init corgi_init(void)