Michael Grzeschik <m...@pengutronix.de> writes:

> Hi Alexander,
>
> On Fri, May 31, 2013 at 08:38:44PM +0200, Michael Grzeschik wrote:
>> From: Michael Grzeschik <m.grzesc...@pengutronix.de>
>> 
>> The pdata structure gets copied anyway inside ci13xxx_add_device
>> by platform_device_add. We don't need to have it static.
>> 
>> Signed-off-by: Michael Grzeschik <m.grzesc...@pengutronix.de>
>> Signed-off-by: Marc Kleine-Budde <m...@pengutronix.de>
>> Signed-off-by: Sascha Hauer <s.ha...@pengutronix.de>
>> Reviewed-by: Peter Chen <peter.c...@freescale.com>
>> ---
>>  drivers/usb/chipidea/ci13xxx_imx.c | 19 +++++++++----------
>>  1 file changed, 9 insertions(+), 10 deletions(-)
>> 
>> diff --git a/drivers/usb/chipidea/ci13xxx_imx.c 
>> b/drivers/usb/chipidea/ci13xxx_imx.c
>> index 73f9d5f..4d64541 100644
>> --- a/drivers/usb/chipidea/ci13xxx_imx.c
>> +++ b/drivers/usb/chipidea/ci13xxx_imx.c
>> @@ -88,17 +88,16 @@ EXPORT_SYMBOL_GPL(usbmisc_get_init_data);
>>  
>>  /* End of common functions shared by usbmisc drivers*/
>>  
>> -static struct ci13xxx_platform_data ci13xxx_imx_platdata  = {
>> -    .name                   = "ci13xxx_imx",
>> -    .flags                  = CI13XXX_REQUIRE_TRANSCEIVER |
>> -                              CI13XXX_PULLUP_ON_VBUS |
>> -                              CI13XXX_DISABLE_STREAMING,
>> -    .capoffset              = DEF_CAPOFFSET,
>> -};
>> -
>>  static int ci13xxx_imx_probe(struct platform_device *pdev)
>>  {
>>      struct ci13xxx_imx_data *data;
>> +    struct ci13xxx_platform_data pdata = {
>> +            .name           = "ci13xxx_imx",
>> +            .capoffset      = DEF_CAPOFFSET,
>> +            .flags          = CI13XXX_REQUIRE_TRANSCEIVER |
>> +                              CI13XXX_PULLUP_ON_VBUS |
>> +                              CI13XXX_DISABLE_STREAMING,
>> +    };
>>      struct platform_device *plat_ci, *phy_pdev;
>>      struct device_node *phy_np;
>>      struct resource *res;
>> @@ -171,7 +170,7 @@ static int ci13xxx_imx_probe(struct platform_device 
>> *pdev)
>>              reg_vbus = NULL;
>>      }
>>  
>> -    ci13xxx_imx_platdata.phy = data->phy;
>> +    pdata.phy = data->phy;
>>  
>>      if (!pdev->dev.dma_mask)
>>              pdev->dev.dma_mask = &pdev->dev.coherent_dma_mask;
>> @@ -189,7 +188,7 @@ static int ci13xxx_imx_probe(struct platform_device 
>> *pdev)
>>  
>>      plat_ci = ci13xxx_add_device(&pdev->dev,
>>                              pdev->resource, pdev->num_resources,
>> -                            &ci13xxx_imx_platdata);
>> +                            &pdata);
>>      if (IS_ERR(plat_ci)) {
>>              ret = PTR_ERR(plat_ci);
>>              dev_err(&pdev->dev,
>
> This and Patch 5, 6 and 7 of this series doesn't got much to do with
> the the dr_mode/phy_type features. I will repost them in another series.
> Beside the others, this one is missing any comments. If it's already good
> to be taken, will you directly apply it?

Ok, I'll take those. I'll let you know if there are any conflicts. :)

Regards,
--
Alex
_______________________________________________
devicetree-discuss mailing list
devicetree-discuss@lists.ozlabs.org
https://lists.ozlabs.org/listinfo/devicetree-discuss

Reply via email to