Commit 48d35916 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] alpha: struct resource fix

Used named initialisers in this declaration before Greg's tree's struct
resource layout changes come in and break it.

(Probably "dma page reg" shouldn't have spaces in the name - be friendly to
/proc/ioports parsers?)

Cc: Richard Henderson <rth@twiddle.net>
Cc: Greg KH <greg@kroah.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 21e99435
...@@ -213,14 +213,14 @@ static void __init ...@@ -213,14 +213,14 @@ static void __init
reserve_std_resources(void) reserve_std_resources(void)
{ {
static struct resource standard_io_resources[] = { static struct resource standard_io_resources[] = {
{ "rtc", -1, -1 }, { .name = "rtc", .start = -1, .end = -1 },
{ "dma1", 0x00, 0x1f }, { .name = "dma1", .start = 0x00, .end = 0x1f },
{ "pic1", 0x20, 0x3f }, { .name = "pic1", .start = 0x20, .end = 0x3f },
{ "timer", 0x40, 0x5f }, { .name = "timer", .start = 0x40, .end = 0x5f },
{ "keyboard", 0x60, 0x6f }, { .name = "keyboard", .start = 0x60, .end = 0x6f },
{ "dma page reg", 0x80, 0x8f }, { .name = "dma page reg", .start = 0x80, .end = 0x8f },
{ "pic2", 0xa0, 0xbf }, { .name = "pic2", .start = 0xa0, .end = 0xbf },
{ "dma2", 0xc0, 0xdf }, { .name = "dma2", .start = 0xc0, .end = 0xdf },
}; };
struct resource *io = &ioport_resource; struct resource *io = &ioport_resource;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment