aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/net/phy/mdio-mux.c
diff options
context:
space:
mode:
authorCorentin Labbe <clabbe.montjoie@gmail.com>2017-09-01 13:56:00 +0200
committerDavid S. Miller <davem@davemloft.net>2017-09-01 10:26:31 -0700
commit2d00cd859c79fb477ead232241808e02b6f468b3 (patch)
tree93685f1b1c90e9ea7fa38470b1aec4ace2e4e0c0 /drivers/net/phy/mdio-mux.c
parentMerge branch 'mvpp2-optional-PHYs-and-GoP-link-irq' (diff)
downloadwireguard-linux-2d00cd859c79fb477ead232241808e02b6f468b3.tar.xz
wireguard-linux-2d00cd859c79fb477ead232241808e02b6f468b3.zip
net: mdio-mux: Fix NULL Comparison style
This patch fix checkpatch warning about NULL Comparison style. Signed-off-by: Corentin Labbe <clabbe.montjoie@gmail.com> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/phy/mdio-mux.c')
-rw-r--r--drivers/net/phy/mdio-mux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/phy/mdio-mux.c b/drivers/net/phy/mdio-mux.c
index 942ceaf3fd3f..b18ad7082b88 100644
--- a/drivers/net/phy/mdio-mux.c
+++ b/drivers/net/phy/mdio-mux.c
@@ -120,7 +120,7 @@ int mdio_mux_init(struct device *dev,
}
pb = devm_kzalloc(dev, sizeof(*pb), GFP_KERNEL);
- if (pb == NULL) {
+ if (!pb) {
ret_val = -ENOMEM;
goto err_pb_kz;
}
@@ -144,7 +144,7 @@ int mdio_mux_init(struct device *dev,
}
cb = devm_kzalloc(dev, sizeof(*cb), GFP_KERNEL);
- if (cb == NULL) {
+ if (!cb) {
dev_err(dev,
"Error: Failed to allocate memory for child %pOF\n",
child_bus_node);