[PATCH] ppc32: Fix MPC834x USB memory map offsets
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>
This commit is contained in:
Родитель
b612cacb02
Коммит
5e708484d7
|
@ -191,8 +191,8 @@ struct platform_device ppc_sys_platform_devices[] = {
|
||||||
.num_resources = 2,
|
.num_resources = 2,
|
||||||
.resource = (struct resource[]) {
|
.resource = (struct resource[]) {
|
||||||
{
|
{
|
||||||
.start = 0x22000,
|
.start = 0x23000,
|
||||||
.end = 0x22fff,
|
.end = 0x23fff,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -208,8 +208,8 @@ struct platform_device ppc_sys_platform_devices[] = {
|
||||||
.num_resources = 2,
|
.num_resources = 2,
|
||||||
.resource = (struct resource[]) {
|
.resource = (struct resource[]) {
|
||||||
{
|
{
|
||||||
.start = 0x23000,
|
.start = 0x22000,
|
||||||
.end = 0x23fff,
|
.end = 0x22fff,
|
||||||
.flags = IORESOURCE_MEM,
|
.flags = IORESOURCE_MEM,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
Загрузка…
Ссылка в новой задаче