ARM: tegra: remove copy-and-pasted usb platform data from boards

trimslice and paz00 both have functionally identical platform
data for the tegra-ehci driver.  Move the platform data into
devices.c, and remove it from all the board files.

Signed-off-by: Colin Cross <ccross@android.com>
Tested-by: Konstantin Sinyuk <kostyas@compulab.co.il>
Acked-by: Olof Johansson <olof@lixom.net>
This commit is contained in:
Colin Cross
2011-07-10 14:59:45 -07:00
parent 78702e43c1
commit 681e6edc25
3 changed files with 28 additions and 45 deletions

View File

@@ -26,7 +26,6 @@
#include <linux/pda_power.h>
#include <linux/io.h>
#include <linux/i2c.h>
#include <linux/platform_data/tegra_usb.h>
#include <asm/mach-types.h>
#include <asm/mach/arch.h>
@@ -36,7 +35,6 @@
#include <mach/iomap.h>
#include <mach/irqs.h>
#include <mach/sdhci.h>
#include <mach/usb_phy.h>
#include <mach/gpio.h>
#include "board.h"
@@ -80,32 +78,8 @@ static void paz00_i2c_init(void)
platform_device_register(&tegra_i2c_device4);
}
static struct tegra_ulpi_config ulpi_phy_config = {
.reset_gpio = TEGRA_ULPI_RST,
.clk = "cdev2",
};
static struct tegra_ehci_platform_data tegra_ehci_pdata[] = {
[0] = {
.operating_mode = TEGRA_USB_OTG,
.power_down_on_bus_suspend = 1,
},
[1] = {
.phy_config = &ulpi_phy_config,
.operating_mode = TEGRA_USB_HOST,
.power_down_on_bus_suspend = 1,
},
[2] = {
.operating_mode = TEGRA_USB_HOST,
.power_down_on_bus_suspend = 1,
},
};
static void paz00_usb_init(void)
{
tegra_ehci2_device.dev.platform_data = &tegra_ehci_pdata[1];
tegra_ehci3_device.dev.platform_data = &tegra_ehci_pdata[2];
platform_device_register(&tegra_ehci2_device);
platform_device_register(&tegra_ehci3_device);
}