Re: [PATCH v3 10/12] hikey960: Support usb functionality of Hikey960

From: Andy Shevchenko
Date: Mon Mar 04 2019 - 01:50:54 EST


On Mon, Mar 4, 2019 at 3:47 AM Chunfeng Yun <chunfeng.yun@xxxxxxxxxxxx> wrote:
> On Sat, 2019-03-02 at 17:05 +0800, Yu Chen wrote:

> > + hisi_hikey_usb->role_sw = usb_role_switch_get(dev);
> > + if (!hisi_hikey_usb->role_sw)
> > + return -EPROBE_DEFER;
> Here return EPROBE_DEFFER means the related device_connection is
> registered after this probe is called, right?
> if not, use IS_ERR_OR_NULL then return PTR_ERR is enough

How enough? If return value is NULL it would be transformered to 0,
which is success return code from the ->probe() which means we will
have ->probed() and not functional device.

Am I missing something?

--
With Best Regards,
Andy Shevchenko