Re: [PATCH] include: phy: fix NULL pointer check in phy_write()

2020-09-17 Thread Tom Rini
On Mon, Aug 17, 2020 at 05:31:08PM -0700, Thirupathaiah Annapureddy wrote: > phy_write() uses bus->write() instead of bus->read(). This means NULL > pointer pre-check needs to happen on bus->write instead of bus->read. > > Signed-off-by: Thirupathaiah Annapureddy > Reviewed-by: Michal Simek Ap

Re: [PATCH] include: phy: fix NULL pointer check in phy_write()

2020-09-15 Thread Tom Rini
On Tue, Sep 15, 2020 at 04:23:02PM +0200, Michal Simek wrote: > Hi Tom, > > út 18. 8. 2020 v 2:31 odesílatel Thirupathaiah Annapureddy > napsal: > > > > phy_write() uses bus->write() instead of bus->read(). This means NULL > > pointer pre-check needs to happen on bus->write instead of bus->read.

Re: [PATCH] include: phy: fix NULL pointer check in phy_write()

2020-09-15 Thread Michal Simek
Hi Tom, út 18. 8. 2020 v 2:31 odesílatel Thirupathaiah Annapureddy napsal: > > phy_write() uses bus->write() instead of bus->read(). This means NULL > pointer pre-check needs to happen on bus->write instead of bus->read. > > Signed-off-by: Thirupathaiah Annapureddy > --- > include/phy.h | 2 +-

Re: [PATCH] include: phy: fix NULL pointer check in phy_write()

2020-08-17 Thread Michal Simek
On 18. 08. 20 2:31, Thirupathaiah Annapureddy wrote: > phy_write() uses bus->write() instead of bus->read(). This means NULL > pointer pre-check needs to happen on bus->write instead of bus->read. > > Signed-off-by: Thirupathaiah Annapureddy > --- > include/phy.h | 2 +- > 1 file changed, 1 i

[PATCH] include: phy: fix NULL pointer check in phy_write()

2020-08-17 Thread Thirupathaiah Annapureddy
phy_write() uses bus->write() instead of bus->read(). This means NULL pointer pre-check needs to happen on bus->write instead of bus->read. Signed-off-by: Thirupathaiah Annapureddy --- include/phy.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/phy.h b/include/phy.h