提交 be35ae9e 编写于 作者: S Santiago Leon 提交者: David S. Miller

ibmveth: Return -EINVAL on all ->probe errors

We had a few cases where we returned success on error.
Signed-off-by: NAnton Blanchard <anton@samba.org>
Signed-off-by: NSantiago Leon <santil@linux.vnet.ibm.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 f148f61d
...@@ -1392,7 +1392,7 @@ static int __devinit ibmveth_probe(struct vio_dev *dev, ...@@ -1392,7 +1392,7 @@ static int __devinit ibmveth_probe(struct vio_dev *dev,
NULL); NULL);
if (!mac_addr_p) { if (!mac_addr_p) {
dev_err(&dev->dev, "Can't find VETH_MAC_ADDR attribute\n"); dev_err(&dev->dev, "Can't find VETH_MAC_ADDR attribute\n");
return 0; return -EINVAL;
} }
mcastFilterSize_p = (unsigned int *)vio_get_attribute(dev, mcastFilterSize_p = (unsigned int *)vio_get_attribute(dev,
...@@ -1400,7 +1400,7 @@ static int __devinit ibmveth_probe(struct vio_dev *dev, ...@@ -1400,7 +1400,7 @@ static int __devinit ibmveth_probe(struct vio_dev *dev,
if (!mcastFilterSize_p) { if (!mcastFilterSize_p) {
dev_err(&dev->dev, "Can't find VETH_MCAST_FILTER_SIZE " dev_err(&dev->dev, "Can't find VETH_MCAST_FILTER_SIZE "
"attribute\n"); "attribute\n");
return 0; return -EINVAL;
} }
netdev = alloc_etherdev(sizeof(struct ibmveth_adapter)); netdev = alloc_etherdev(sizeof(struct ibmveth_adapter));
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册