public inbox for kernel-janitors@vger.kernel.org
 help / color / mirror / Atom feed
* re: net: hns: enet specifies a reference to dsaf
@ 2016-03-16 19:48 Dan Carpenter
  2016-03-17  6:48 ` Yankejian (Hackim Yim)
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Dan Carpenter @ 2016-03-16 19:48 UTC (permalink / raw)
  To: kernel-janitors

Hello yankejian,

The patch 48189d6aaf1e: "net: hns: enet specifies a reference to
dsaf" from Jan 20, 2016, leads to the following static checker
warning:

	drivers/net/ethernet/hisilicon/hns/hns_enet.c:1885 hns_nic_dev_probe()
	warn: passing zero to 'PTR_ERR'

drivers/net/ethernet/hisilicon/hns/hns_enet.c
  1882  
  1883          priv->ae_node = (void *)of_parse_phandle(node, "ae-handle", 0);
                                        ^^^^^^^^^^^^^^^^
I don't think this ever returns ERR_PTRs.

  1884          if (IS_ERR_OR_NULL(priv->ae_node)) {
  1885                  ret = PTR_ERR(priv->ae_node);


This should just be ret = -EINVAL because if priv->ae_node is NULL it
means we are returning success.

  1886                  dev_err(dev, "not find ae-handle\n");
  1887                  goto out_read_prop_fail;
  1888          }
  1889  


regards,
dan carpenter

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-03-18  1:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-16 19:48 net: hns: enet specifies a reference to dsaf Dan Carpenter
2016-03-17  6:48 ` Yankejian (Hackim Yim)
2016-03-17  8:29 ` Dan Carpenter
2016-03-18  1:48 ` Yankejian (Hackim Yim)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox