aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/sfc/ptp.c
diff options
context:
space:
mode:
authorWei Yongjun <yongjun_wei@trendmicro.com.cn>2013-05-06 22:19:25 -0400
committerDavid S. Miller <davem@davemloft.net>2013-05-08 16:13:30 -0400
commit155d940a78fd0761c2d73c5bd95a9dd287d58054 (patch)
tree515cd760a696f436a64ae0ae3c16151a128d4375 /drivers/net/ethernet/sfc/ptp.c
parent228fb087a0098e9d4a2498f388762ff379eebae1 (diff)
sfc: fix return value check in efx_ptp_probe_channel()
In case of error, the function ptp_clock_register() returns ERR_PTR() and never returns NULL. The NULL test in the return value check should be replaced with IS_ERR(). Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Reviewed-by: Ben Hutchings <bhutchings@solarflare.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/sfc/ptp.c')
-rw-r--r--drivers/net/ethernet/sfc/ptp.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/ethernet/sfc/ptp.c b/drivers/net/ethernet/sfc/ptp.c
index 07f6baa15c0c..9a95abf2dedf 100644
--- a/drivers/net/ethernet/sfc/ptp.c
+++ b/drivers/net/ethernet/sfc/ptp.c
@@ -912,8 +912,10 @@ static int efx_ptp_probe_channel(struct efx_channel *channel)
912 912
913 ptp->phc_clock = ptp_clock_register(&ptp->phc_clock_info, 913 ptp->phc_clock = ptp_clock_register(&ptp->phc_clock_info,
914 &efx->pci_dev->dev); 914 &efx->pci_dev->dev);
915 if (!ptp->phc_clock) 915 if (IS_ERR(ptp->phc_clock)) {
916 rc = PTR_ERR(ptp->phc_clock);
916 goto fail3; 917 goto fail3;
918 }
917 919
918 INIT_WORK(&ptp->pps_work, efx_ptp_pps_worker); 920 INIT_WORK(&ptp->pps_work, efx_ptp_pps_worker);
919 ptp->pps_workwq = create_singlethread_workqueue("sfc_pps"); 921 ptp->pps_workwq = create_singlethread_workqueue("sfc_pps");