mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-08 03:40:35 +09:00
net: b44: fix error return code in b44_init_one()
[ Upstream commit7b027c249d] Fix to return a negative error code from the error handling case instead of 0, as done elsewhere in this function. Fixes:39a6f4bce6("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> Link: https://lore.kernel.org/r/1605582131-36735-1-git-send-email-zhangchangzhong@huawei.com Signed-off-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
78b9c4a8e3
commit
fa03d6177b
@@ -2391,7 +2391,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;
|
||||
|
||||
Reference in New Issue
Block a user