From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Lunn Subject: Re: [PATCH net-next 4/5] net: phy: mscc: shorten `x != 0` condition to `x` Date: Fri, 14 Sep 2018 15:05:25 +0200 Message-ID: <20180914130525.GD14865@lunn.ch> References: <2efac3971c41837fec6001018c1275d81286512a.1536913944.git-series.quentin.schulz@bootlin.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: davem@davemloft.net, f.fainelli@gmail.com, allan.nielsen@microchip.com, linux-kernel@vger.kernel.org, netdev@vger.kernel.org, thomas.petazzoni@bootlin.com To: Quentin Schulz Return-path: Content-Disposition: inline In-Reply-To: <2efac3971c41837fec6001018c1275d81286512a.1536913944.git-series.quentin.schulz@bootlin.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org On Fri, Sep 14, 2018 at 10:33:46AM +0200, Quentin Schulz wrote: > `if (x != 0)` is basically a more verbose version of `if (x)` so let's > use the latter so it's consistent throughout the whole driver. > > Signed-off-by: Quentin Schulz Reviewed-by: Andrew Lunn Andrew