diff options
| author | Sergei Shtylyov <[email protected]> | 2013-06-02 01:50:25 +0400 |
|---|---|---|
| committer | Simon Horman <[email protected]> | 2013-06-11 16:10:47 +0900 |
| commit | 725bf9dcafe16aa69c8ab34c63ba36c6eb4492f2 (patch) | |
| tree | 6e55071261b8d7c95233c7df904865bf4427aba3 /arch | |
| parent | bb6e7d61dd95153c8c5d0ee52f303e0f475b736e (diff) | |
phy-rcar-usb: correct base address
The memory region that is used by the driver overlaps EHCI and OHCI register
regions for absolutely no reason now -- fix it by adding offset of 0x800 to
the base address, changing the register #define's accordingly. This has extra
positive effect that we now can use devm_ioremap_resource()...
Note that the driver and the SoC code have to be in one patch to keep the code
bisectable...
The patch has been tested on the Marzen board.
Signed-off-by: Sergei Shtylyov <[email protected]>
Acked-by: Kuninori Morimoto <[email protected]>
Acked-by: Felipe Balbi <[email protected]>
Signed-off-by: Simon Horman <[email protected]>
Diffstat (limited to 'arch')
| -rw-r--r-- | arch/arm/mach-shmobile/setup-r8a7779.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-shmobile/setup-r8a7779.c b/arch/arm/mach-shmobile/setup-r8a7779.c index a6406cd61ff3..a00283fe528c 100644 --- a/arch/arm/mach-shmobile/setup-r8a7779.c +++ b/arch/arm/mach-shmobile/setup-r8a7779.c @@ -391,7 +391,7 @@ static struct platform_device sata_device = { /* USB PHY */ static struct resource usb_phy_resources[] = { [0] = { - .start = 0xffe70000, + .start = 0xffe70800, .end = 0xffe70900 - 1, .flags = IORESOURCE_MEM, }, |