Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5e708484 authored by Kumar Gala's avatar Kumar Gala Committed by Linus Torvalds
Browse files

[PATCH] ppc32: Fix MPC834x USB memory map offsets



The memory mappings for MPC8349 USB MPH and DR modules were reversed.

Signed-off-by: default avatarLi Yang <LeoLi@freescale.com>
Signed-off-by: default avatarJiang Bo <Tanya.jiang@freescale.com>
Signed-off-by: default avatarKumar Gala <kumar.gala@freescale.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent b612cacb
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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,
			},
			{
@@ -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,
			},
			{