diff mbox series

[net] net: b44: fix error return code in b44_init_one()

Message ID 1605582131-36735-1-git-send-email-zhangchangzhong@huawei.com
State New
Headers show
Series [net] net: b44: fix error return code in b44_init_one() | expand

Commit Message

Zhang Changzhong Nov. 17, 2020, 3:02 a.m. UTC
Fix to return a negative error code from the error handling
case instead of 0, as done elsewhere in this function.

Fixes: 39a6f4bce6b4 ("b44: replace the ssb_dma API with the generic DMA API")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Zhang Changzhong <zhangchangzhong@huawei.com>
---
 drivers/net/ethernet/broadcom/b44.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

Michael Chan Nov. 17, 2020, 4:13 a.m. UTC | #1
On Mon, Nov 16, 2020 at 7:01 PM Zhang Changzhong
<zhangchangzhong@huawei.com> wrote:
>
> Fix to return a negative error code from the error handling
> case instead of 0, as done elsewhere in this function.
>
> Fixes: 39a6f4bce6b4 ("b44: replace the ssb_dma API with the generic DMA API")
> Reported-by: Hulk Robot <hulkci@huawei.com>
> Signed-off-by: Zhang Changzhong <zhangchangzhong@huawei.com>

Reviewed-by: Michael Chan <michael.chan@broadcom.com>

Thanks.
Jakub Kicinski Nov. 17, 2020, 6:52 p.m. UTC | #2
On Mon, 16 Nov 2020 20:13:43 -0800 Michael Chan wrote:
> On Mon, Nov 16, 2020 at 7:01 PM Zhang Changzhong wrote:

> >

> > Fix to return a negative error code from the error handling

> > case instead of 0, as done elsewhere in this function.

> >

> > Fixes: 39a6f4bce6b4 ("b44: replace the ssb_dma API with the generic DMA API")

> > Reported-by: Hulk Robot <hulkci@huawei.com>

> > Signed-off-by: Zhang Changzhong <zhangchangzhong@huawei.com>  

> 

> Reviewed-by: Michael Chan <michael.chan@broadcom.com>


Applied, thanks!
diff mbox series

Patch

diff --git a/drivers/net/ethernet/broadcom/b44.c b/drivers/net/ethernet/broadcom/b44.c
index 74c1778..b455b60 100644
--- a/drivers/net/ethernet/broadcom/b44.c
+++ b/drivers/net/ethernet/broadcom/b44.c
@@ -2383,7 +2383,8 @@  static int b44_init_one(struct ssb_device *sdev,
 		goto err_out_free_dev;
 	}
 
-	if (dma_set_mask_and_coherent(sdev->dma_dev, DMA_BIT_MASK(30))) {
+	err = dma_set_mask_and_coherent(sdev->dma_dev, DMA_BIT_MASK(30));
+	if (err) {
 		dev_err(sdev->dev,
 			"Required 30BIT DMA mask unsupported by the system\n");
 		goto err_out_powerdown;