Skip to content

Commit

Permalink
[PATCH] ppc32: Fix MPC834x USB memory map offsets
Browse files Browse the repository at this point in the history
The memory mappings for MPC8349 USB MPH and DR modules were reversed.

Signed-off-by: Li Yang <LeoLi@freescale.com>
Signed-off-by: Jiang Bo <Tanya.jiang@freescale.com>
Signed-off-by: Kumar Gala <kumar.gala@freescale.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Kumar Gala authored and Linus Torvalds committed Aug 8, 2005
1 parent b612cac commit 5e70848
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions arch/ppc/syslib/mpc83xx_devices.c
Original file line number Diff line number Diff line change
Expand Up @@ -191,8 +191,8 @@ struct platform_device ppc_sys_platform_devices[] = {
.num_resources = 2,
.resource = (struct resource[]) {
{
.start = 0x22000,
.end = 0x22fff,
.start = 0x23000,
.end = 0x23fff,
.flags = IORESOURCE_MEM,
},
{
Expand All @@ -208,8 +208,8 @@ struct platform_device ppc_sys_platform_devices[] = {
.num_resources = 2,
.resource = (struct resource[]) {
{
.start = 0x23000,
.end = 0x23fff,
.start = 0x22000,
.end = 0x22fff,
.flags = IORESOURCE_MEM,
},
{
Expand Down

0 comments on commit 5e70848

Please sign in to comment.