From: Dan Carpenter <dan.carpenter@oracle.com>
To: kernel-janitors@vger.kernel.org
Subject: re: net: hns: enet specifies a reference to dsaf
Date: Wed, 16 Mar 2016 19:48:51 +0000 [thread overview]
Message-ID: <20160316194851.GA20386@mwanda> (raw)
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
next reply other threads:[~2016-03-16 19:48 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-03-16 19:48 Dan Carpenter [this message]
2016-03-17 6:48 ` net: hns: enet specifies a reference to dsaf Yankejian (Hackim Yim)
2016-03-17 8:29 ` Dan Carpenter
2016-03-18 1:48 ` Yankejian (Hackim Yim)
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160316194851.GA20386@mwanda \
--to=dan.carpenter@oracle.com \
--cc=kernel-janitors@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.