Index: linux/arch/arm/mach-pxa/corgi.c
===================================================================
--- linux.orig/arch/arm/mach-pxa/corgi.c	2005-02-13 15:43:27.672055568 +0000
+++ linux/arch/arm/mach-pxa/corgi.c	2005-02-13 15:49:17.180922144 +0000
@@ -128,6 +128,45 @@
 
 
 /*
+ * Corgi Battery and Power Device
+ */
+static struct platform_device corgibattery_device = {
+	.name		= "corgi-battery",
+	.id		= -1,
+};
+
+
+/*
+ * Corgi Sound Device
+ */
+static struct platform_device corgisound_device = {
+	.name		= "corgi-sound",
+	.id		= -1,
+};
+
+
+/*
+ * 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
  *
  * The card detect interrupt isn't debounced so we delay it by HZ/4
@@ -228,7 +267,11 @@
 	&corgiscoop_device,
 	&corgissp_device,
 	&corgifb_device,
+	&corgikbd_device,
 	&corgibl_device,
+	&corgibattery_device,
+	&corgisound_device,
+	&corgits_device,
 };
 
 static struct sharpsl_flash_param_info sharpsl_flash_param;
