mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-04 04:06:26 +00:00
mcb: request_mem_region() returns NULL on error
The code here is checking for IS_ERR() when request_mem_region() only returns NULL on error and never an ERR_PTR. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
127af88285
commit
d86fb45b5c
@ -56,9 +56,9 @@ static int mcb_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
|
|||||||
|
|
||||||
res = request_mem_region(priv->mapbase, CHAM_HEADER_SIZE,
|
res = request_mem_region(priv->mapbase, CHAM_HEADER_SIZE,
|
||||||
KBUILD_MODNAME);
|
KBUILD_MODNAME);
|
||||||
if (IS_ERR(res)) {
|
if (!res) {
|
||||||
dev_err(&pdev->dev, "Failed to request PCI memory\n");
|
dev_err(&pdev->dev, "Failed to request PCI memory\n");
|
||||||
ret = PTR_ERR(res);
|
ret = -EBUSY;
|
||||||
goto out_disable;
|
goto out_disable;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user