[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <7673314425958a56a07899b300226554@walle.cc>
Date: Tue, 05 Jul 2022 22:56:39 +0200
From: Michael Walle <michael@...le.cc>
To: Saravana Kannan <saravanak@...gle.com>
Cc: Cristian Birsan <cristian.birsan@...rochip.com>,
Felipe Balbi <balbi@...nel.org>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
Nicolas Ferre <nicolas.ferre@...rochip.com>,
Alexandre Belloni <alexandre.belloni@...tlin.com>,
Claudiu Beznea <claudiu.beznea@...rochip.com>,
linux-arm-kernel@...ts.infradead.org, linux-usb@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: Re: [PATCH 1/2] usb: gadget: udc: atmel: check rc of
devm_gpiod_get_optional()
Am 2022-07-05 20:53, schrieb Saravana Kannan:
> On Tue, Jul 5, 2022 at 6:19 AM Michael Walle <michael@...le.cc> wrote:
>>
>> devm_gpiod_get_optional() might still return an error code, esp.
>> EPROBE_DEFER. Return any errors.
>>
>> Signed-off-by: Michael Walle <michael@...le.cc>
>> ---
>> drivers/usb/gadget/udc/atmel_usba_udc.c | 2 ++
>> 1 file changed, 2 insertions(+)
>>
>> diff --git a/drivers/usb/gadget/udc/atmel_usba_udc.c
>> b/drivers/usb/gadget/udc/atmel_usba_udc.c
>> index ae2bfbac603e..48355e0cee76 100644
>> --- a/drivers/usb/gadget/udc/atmel_usba_udc.c
>> +++ b/drivers/usb/gadget/udc/atmel_usba_udc.c
>> @@ -2165,6 +2165,8 @@ static struct usba_ep * atmel_udc_of_init(struct
>> platform_device *pdev,
>>
>> udc->vbus_pin = devm_gpiod_get_optional(&pdev->dev,
>> "atmel,vbus",
>> GPIOD_IN);
>> + if (IS_ERR(udc->vbus_pin))
>> + return ERR_CAST(udc->vbus_pin);
>
> I'm confused. Is it really an optional resource if you treat a failure
> to get it
> as a reason to fail a probe?
If the gpio isn't found NULL is returned.
-michael
Powered by blists - more mailing lists