diff options
author | Jingoo Han <jg1.han@samsung.com> | 2013-09-12 15:41:32 +0900 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2013-10-23 16:20:52 +0100 |
commit | 1fcd5d815e12eafa7304f1dd39900eaa332085eb (patch) | |
tree | 17eadf9a0571ef9b8c8ae53c078efc4d1b26957c /drivers/mfd/lpc_ich.c | |
parent | 18fefda9ee13e377cf6c5542818b7be066972843 (diff) | |
download | talos-obmc-linux-1fcd5d815e12eafa7304f1dd39900eaa332085eb.tar.gz talos-obmc-linux-1fcd5d815e12eafa7304f1dd39900eaa332085eb.zip |
mfd: lpc_ich: Remove unnecessary pci_set_drvdata()
The driver core clears the driver data to NULL after device_release
or on probe failure. Thus, it is not needed to manually clear the
device driver data to NULL.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/lpc_ich.c')
-rw-r--r-- | drivers/mfd/lpc_ich.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/mfd/lpc_ich.c b/drivers/mfd/lpc_ich.c index 9483bc8472a5..316af07ede3f 100644 --- a/drivers/mfd/lpc_ich.c +++ b/drivers/mfd/lpc_ich.c @@ -969,7 +969,6 @@ static int lpc_ich_probe(struct pci_dev *dev, if (!cell_added) { dev_warn(&dev->dev, "No MFD cells added\n"); lpc_ich_restore_config_space(dev); - pci_set_drvdata(dev, NULL); return -ENODEV; } @@ -980,7 +979,6 @@ static void lpc_ich_remove(struct pci_dev *dev) { mfd_remove_devices(&dev->dev); lpc_ich_restore_config_space(dev); - pci_set_drvdata(dev, NULL); } static struct pci_driver lpc_ich_driver = { |