Re: [PATCH net-next] net: dsa: drop explicit NULL comparisons
Andrew Lunn <[email protected]>
| Newsgroups | org.kernel.vger.netdev,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <[email protected]> |
On Wed, Aug 12, 2026 at 02:06:44PM +0800, Kai Kuang wrote: > Replace explicit NULL comparisons with the boolean form to follow > the kernel coding style: > > dev->class != NULL -> dev->class > user_dev == NULL -> !user_dev > > No functional changes intended. > > Signed-off-by: Kai Kuang <[email protected]> Reviewed-by: Andrew Lunn <[email protected]> Andrew