1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
Index: linux-2.6.23/arch/arm/mach-pxa/ezx-a780.c
===================================================================
--- linux-2.6.23.orig/arch/arm/mach-pxa/ezx-a780.c 2007-10-23 23:03:48.000000000 +0200
+++ linux-2.6.23/arch/arm/mach-pxa/ezx-a780.c 2007-10-23 23:04:03.000000000 +0200
@@ -212,8 +212,33 @@
},
};
+/* EMU */
+static struct resource a780_emu_resources[] = {
+ [0] = {
+ .start = EZX_IRQ_USB4V,
+ .end = EZX_IRQ_USB4V,
+ .flags = IORESOURCE_IRQ,
+ },
+ [1] = {
+ .start = EZX_IRQ_USB1V,
+ .end = EZX_IRQ_USB1V,
+ .flags = IORESOURCE_IRQ,
+ },
+};
+
+struct platform_device a780_emu_device = {
+ .name = "ezx-emu",
+ .id = -1,
+ .dev = {
+ .parent = &a780_pcap_device.dev,
+ },
+ .num_resources = ARRAY_SIZE(a780_emu_resources),
+ .resource = a780_emu_resources,
+};
+
static struct platform_device *devices[] __initdata = {
&a780_pcap_device,
+ &a780_emu_device,
};
static void __init a780_init(void)
|