Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 149291
b: refs/heads/master
c: 432818f
h: refs/heads/master
i:
  149289: 1593201
  149287: 864f93c
v: v3
  • Loading branch information
wanzongshun authored and Russell King committed May 7, 2009
1 parent 759a028 commit 8d7281f
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 177dd6bb8c70885bfe3c269bf21dab1c4aeaf5c3
refs/heads/master: 432818f08fa5cf983e13b0ac32ec59b0951882b9
24 changes: 24 additions & 0 deletions trunk/arch/arm/mach-w90x900/mach-w90p910evb.c
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,29 @@ struct platform_device w90x900_device_usb_ohci = {
};
EXPORT_SYMBOL(w90x900_device_usb_ohci);

/*TouchScreen controller*/

static struct resource w90x900_ts_resource[] = {
[0] = {
.start = W90X900_PA_ADC,
.end = W90X900_PA_ADC + W90X900_SZ_ADC-1,
.flags = IORESOURCE_MEM,
},
[1] = {
.start = IRQ_ADC,
.end = IRQ_ADC,
.flags = IORESOURCE_IRQ,
},
};

struct platform_device w90x900_device_ts = {
.name = "w90x900-ts",
.id = -1,
.resource = w90x900_ts_resource,
.num_resources = ARRAY_SIZE(w90x900_ts_resource),
};
EXPORT_SYMBOL(w90x900_device_ts);

static struct map_desc w90p910_iodesc[] __initdata = {
};

Expand All @@ -145,6 +168,7 @@ static struct platform_device *w90p910evb_dev[] __initdata = {
&w90p910_flash_device,
&w90x900_device_usb_ehci,
&w90x900_device_usb_ohci,
&w90x900_device_ts,
};

static void __init w90p910evb_map_io(void)
Expand Down

0 comments on commit 8d7281f

Please sign in to comment.