diff options
author | David S. Miller <davem@davemloft.net> | 2009-03-26 18:23:24 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-03-26 18:23:24 -0400 |
commit | 08abe18af1f78ee80c3c3a5ac47c3e0ae0beadf6 (patch) | |
tree | 2be39bf8942edca1bcec735145e144a682ca9cd3 /arch/arm/mach-orion5x | |
parent | f0de70f8bb56952f6e016a65a8a8d006918f5bf6 (diff) | |
parent | 0384e2959127a56d0640505d004d8dd92f9c29f5 (diff) |
Merge branch 'master' of /home/davem/src/GIT/linux-2.6/
Conflicts:
drivers/net/wimax/i2400m/usb-notif.c
Diffstat (limited to 'arch/arm/mach-orion5x')
-rw-r--r-- | arch/arm/mach-orion5x/common.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/mach-orion5x/common.c b/arch/arm/mach-orion5x/common.c index a4ecf625981e..8373736c24dd 100644 --- a/arch/arm/mach-orion5x/common.c +++ b/arch/arm/mach-orion5x/common.c | |||
@@ -434,6 +434,10 @@ void __init orion5x_uart1_init(void) | |||
434 | /***************************************************************************** | 434 | /***************************************************************************** |
435 | * XOR engine | 435 | * XOR engine |
436 | ****************************************************************************/ | 436 | ****************************************************************************/ |
437 | struct mv_xor_platform_shared_data orion5x_xor_shared_data = { | ||
438 | .dram = &orion5x_mbus_dram_info, | ||
439 | }; | ||
440 | |||
437 | static struct resource orion5x_xor_shared_resources[] = { | 441 | static struct resource orion5x_xor_shared_resources[] = { |
438 | { | 442 | { |
439 | .name = "xor low", | 443 | .name = "xor low", |
@@ -451,6 +455,9 @@ static struct resource orion5x_xor_shared_resources[] = { | |||
451 | static struct platform_device orion5x_xor_shared = { | 455 | static struct platform_device orion5x_xor_shared = { |
452 | .name = MV_XOR_SHARED_NAME, | 456 | .name = MV_XOR_SHARED_NAME, |
453 | .id = 0, | 457 | .id = 0, |
458 | .dev = { | ||
459 | .platform_data = &orion5x_xor_shared_data, | ||
460 | }, | ||
454 | .num_resources = ARRAY_SIZE(orion5x_xor_shared_resources), | 461 | .num_resources = ARRAY_SIZE(orion5x_xor_shared_resources), |
455 | .resource = orion5x_xor_shared_resources, | 462 | .resource = orion5x_xor_shared_resources, |
456 | }; | 463 | }; |