From 49c911f5017e65dbde0ed185ac254406cbc7eddf Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Tue, 6 Sep 2005 15:19:07 -0700 Subject: [PATCH] --- yaml --- r: 7484 b: refs/heads/master c: f7ceff348bbd2ef35b5bc2ab47541dcac4b0b8ea h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/arch/arm/mach-pxa/corgi.c | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/[refs] b/[refs] index faea5e02fb62..0267f3d93b5b 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 3158106685acac8f8d4e74a17b974f160fe77c0b +refs/heads/master: f7ceff348bbd2ef35b5bc2ab47541dcac4b0b8ea diff --git a/trunk/arch/arm/mach-pxa/corgi.c b/trunk/arch/arm/mach-pxa/corgi.c index 453be2948533..47da9fe57aa6 100644 --- a/trunk/arch/arm/mach-pxa/corgi.c +++ b/trunk/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)