diff options
| author | Stephen Warren <swarren@nvidia.com> | 2012-10-02 16:50:02 -0600 | 
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-10-24 14:35:44 -0700 | 
| commit | ffc7493df73cf0e3d2c6719f3794696dbc3929a9 (patch) | |
| tree | 0d20206d1895d69d0f04fd1981a3ad14322b026f | |
| parent | 54388b281c877b2797bb0fc97c099fb7ffd5336a (diff) | |
| download | olio-linux-3.10-ffc7493df73cf0e3d2c6719f3794696dbc3929a9.tar.xz olio-linux-3.10-ffc7493df73cf0e3d2c6719f3794696dbc3929a9.zip  | |
usb: phy: tegra remove include of <mach/iomap.h>
Almost nothing from this file is used, and the file will hopefully be
deleted soon. Copy the tiny portions that are used directly into
tegra_usb_phy.c. I believe that Venu Byravarasu is working on cleaning up
our USB driver, and those cleanups will remove the need for these
constants.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Acked-by: Venu Byravarasu <vbyravarasu@nvidia.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| -rw-r--r-- | drivers/usb/phy/tegra_usb_phy.c | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/usb/phy/tegra_usb_phy.c b/drivers/usb/phy/tegra_usb_phy.c index 987116f9efc..9d13c81754e 100644 --- a/drivers/usb/phy/tegra_usb_phy.c +++ b/drivers/usb/phy/tegra_usb_phy.c @@ -29,7 +29,9 @@  #include <linux/usb/ulpi.h>  #include <asm/mach-types.h>  #include <linux/usb/tegra_usb_phy.h> -#include <mach/iomap.h> + +#define TEGRA_USB_BASE		0xC5000000 +#define TEGRA_USB_SIZE		SZ_16K  #define ULPI_VIEWPORT		0x170  |