Skip to content

Commit

Permalink
gpio-pch: cleanup NULL pointer checking
Browse files Browse the repository at this point in the history
This patch will remove the following sparse warning ("make C=1"):
 * warning: Using plain integer as NULL pointer

Signed-off-by: Márton Németh <nm127@freemail.hu>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
  • Loading branch information
Márton Németh authored and Grant Likely committed Jan 16, 2012
1 parent 53999bf commit c4addcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/gpio/gpio-pch.c
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ static int __devinit pch_gpio_probe(struct pci_dev *pdev,
}

chip->base = pci_iomap(pdev, 1, 0);
if (chip->base == 0) {
if (!chip->base) {
dev_err(&pdev->dev, "%s : pci_iomap FAILED", __func__);
ret = -ENOMEM;
goto err_iomap;
Expand Down

0 comments on commit c4addcb

Please sign in to comment.