ARM: mmp: add an instance of pxa-usb-phy to ttc_dkb and aspenite
This will replace the *_pdata.phy_{de,}init() Signed-off-by: Lubomir Rintel <lkundrak@v3.sk> Signed-off-by: Olof Johansson <olof@lixom.net>
This commit is contained in:
parent
a225daf72e
commit
e47feed91a
|
@ -256,6 +256,10 @@ static void __init common_init(void)
|
|||
/* off-chip devices */
|
||||
platform_device_register(&smc91x_device);
|
||||
|
||||
#if IS_ENABLED(CONFIG_PHY_PXA_USB)
|
||||
platform_device_register(&pxa168_device_usb_phy);
|
||||
#endif
|
||||
|
||||
#if IS_ENABLED(CONFIG_USB_EHCI_MV)
|
||||
pxa168_add_usb_host(&pxa168_sph_pdata);
|
||||
#endif
|
||||
|
|
|
@ -282,6 +282,10 @@ static void __init ttc_dkb_init(void)
|
|||
sizeof(struct pxa_gpio_platform_data));
|
||||
platform_add_devices(ARRAY_AND_SIZE(ttc_dkb_devices));
|
||||
|
||||
#if IS_ENABLED(CONFIG_PHY_PXA_USB)
|
||||
platform_device_register(&pxa168_device_usb_phy);
|
||||
#endif
|
||||
|
||||
#if IS_ENABLED(CONFIG_USB_MV_UDC)
|
||||
pxa168_device_u2o.dev.platform_data = &ttc_usb_pdata;
|
||||
platform_device_register(&pxa168_device_u2o);
|
||||
|
|
Loading…
Reference in New Issue