[media] pci: mantis: Remove redundant pci_set_drvdata
Driver core sets driver data to NULL upon failure or remove. Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Acked-by: Manu Abraham <manu@linuxtv.org> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
This commit is contained in:
parent
3982ccd2b3
commit
593781e48d
|
@ -143,7 +143,6 @@ fail1:
|
||||||
|
|
||||||
fail0:
|
fail0:
|
||||||
dprintk(MANTIS_ERROR, 1, "ERROR: <%d> exiting", ret);
|
dprintk(MANTIS_ERROR, 1, "ERROR: <%d> exiting", ret);
|
||||||
pci_set_drvdata(pdev, NULL);
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(mantis_pci_init);
|
EXPORT_SYMBOL_GPL(mantis_pci_init);
|
||||||
|
@ -161,7 +160,6 @@ void mantis_pci_exit(struct mantis_pci *mantis)
|
||||||
}
|
}
|
||||||
|
|
||||||
pci_disable_device(pdev);
|
pci_disable_device(pdev);
|
||||||
pci_set_drvdata(pdev, NULL);
|
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL_GPL(mantis_pci_exit);
|
EXPORT_SYMBOL_GPL(mantis_pci_exit);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue