]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
ARM: mx3/mx35_3ds: rename usb otg platform data variable name
authorMarc Kleine-Budde <mkl@pengutronix.de>
Wed, 18 Aug 2010 15:56:44 +0000 (17:56 +0200)
committerUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Mon, 27 Sep 2010 10:52:57 +0000 (12:52 +0200)
Rename the variable holding the usb otg platform data to avoid clash
with usb host platform data variable.

usb_pdata -> usb_otg_pdata

Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
arch/arm/mach-mx3/mach-mx35_3ds.c

index b3629e7356066b2e142eaee30eeef1a3b127cc13..ae0f17cc8d73d4ab02c6bf290f0d2b737c6401cd 100644 (file)
@@ -108,7 +108,7 @@ static struct pad_desc mx35pdk_pads[] = {
 };
 
 /* OTG config */
-static struct fsl_usb2_platform_data usb_pdata = {
+static struct fsl_usb2_platform_data usb_otg_pdata = {
        .operating_mode = FSL_USB2_DR_DEVICE,
        .phy_mode       = FSL_USB2_PHY_UTMI_WIDE,
 };
@@ -124,7 +124,7 @@ static void __init mxc_board_init(void)
 
        imx35_add_imx_uart0(&uart_pdata);
 
-       mxc_register_device(&mxc_otg_udc_device, &usb_pdata);
+       mxc_register_device(&mxc_otg_udc_device, &usb_otg_pdata);
 
        imx35_add_mxc_nand(&mx35pdk_nand_board_info);
 }