Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 160789
b: refs/heads/master
c: 42ff4cf
h: refs/heads/master
i:
  160787: 9a31bed
v: v3
  • Loading branch information
wanzongshun authored and Russell King committed Jul 23, 2009
1 parent 34abb63 commit 3aeab21
Show file tree
Hide file tree
Showing 2 changed files with 24 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: 0abe1856bdb68ef699c00949cf9f81fbec98d499
refs/heads/master: 42ff4cf957b695250534e540375e23507c722327
23 changes: 23 additions & 0 deletions trunk/arch/arm/mach-w90x900/mach-w90p910evb.c
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,28 @@ struct platform_device w90x900_device_usbgadget = {
};
EXPORT_SYMBOL(w90x900_device_usbgadget);

/* FMI Device */

static struct resource w90p910_fmi_resource[] = {
[0] = {
.start = W90X900_PA_FMI,
.end = W90X900_PA_FMI + W90X900_SZ_FMI - 1,
.flags = IORESOURCE_MEM,
},
[1] = {
.start = IRQ_FMI,
.end = IRQ_FMI,
.flags = IORESOURCE_IRQ,
}
};

static struct platform_device w90p910_device_fmi = {
.name = "w90p910-fmi",
.id = -1,
.num_resources = ARRAY_SIZE(w90p910_fmi_resource),
.resource = w90p910_fmi_resource,
};

static struct map_desc w90p910_iodesc[] __initdata = {
};

Expand All @@ -242,6 +264,7 @@ static struct platform_device *w90p910evb_dev[] __initdata = {
&w90x900_device_rtc,
&w90x900_device_kpi,
&w90x900_device_usbgadget,
&w90p910_device_fmi,
};

static void __init w90p910evb_map_io(void)
Expand Down

0 comments on commit 3aeab21

Please sign in to comment.