[media] smipcie: fix sparse warnings

smipcie.c:950:31: warning: Using plain integer as NULL pointer
smipcie.c:973:31: warning: Using plain integer as NULL pointer

Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
This commit is contained in:
Hans Verkuil 2014-11-05 04:52:10 -03:00 committed by Mauro Carvalho Chehab
parent a8d54e4cdf
commit 358486c426
1 changed files with 2 additions and 2 deletions

View File

@ -947,7 +947,7 @@ err_del_i2c_adaptor:
err_pci_iounmap:
iounmap(dev->lmmio);
err_kfree:
pci_set_drvdata(pdev, 0);
pci_set_drvdata(pdev, NULL);
kfree(dev);
err_pci_disable_device:
pci_disable_device(pdev);
@ -970,7 +970,7 @@ static void smi_remove(struct pci_dev *pdev)
smi_i2c_exit(dev);
iounmap(dev->lmmio);
pci_set_drvdata(pdev, 0);
pci_set_drvdata(pdev, NULL);
pci_disable_device(pdev);
kfree(dev);
}