Skip to content

Commit

Permalink
[MIPS] RM: Use only phyiscal address for 82596 and 53c710
Browse files Browse the repository at this point in the history
Use physical address for 82596 and 53c710 base address

Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
  • Loading branch information
Thomas Bogendoerfer authored and Ralf Baechle committed Jul 12, 2007
1 parent 0adc327 commit 9815778
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions arch/mips/sni/a20r.c
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ static struct platform_device snirm_82596_pdev = {

static struct resource snirm_53c710_rsrc[] = {
{
.start = 0xb9000000,
.end = 0xb90fffff,
.start = 0x19000000,
.end = 0x190fffff,
.flags = IORESOURCE_MEM
},
{
Expand All @@ -106,8 +106,8 @@ static struct platform_device snirm_53c710_pdev = {

static struct resource sc26xx_rsrc[] = {
{
.start = 0xbc070000,
.end = 0xbc0700ff,
.start = 0x1c070000,
.end = 0x1c0700ff,
.flags = IORESOURCE_MEM
},
{
Expand Down
4 changes: 2 additions & 2 deletions arch/mips/sni/rm200.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ static struct platform_device snirm_82596_rm200_pdev = {

static struct resource snirm_53c710_rm200_rsrc[] = {
{
.start = 0xb9000000,
.end = 0xb90fffff,
.start = 0x19000000,
.end = 0x190fffff,
.flags = IORESOURCE_MEM
},
{
Expand Down

0 comments on commit 9815778

Please sign in to comment.