drivers/block/sx8.c: remove unnecessary pci_set_drvdata()
authorJingoo Han <jg1.han@samsung.com>
Tue, 21 Jan 2014 22:39:21 +0000 (14:39 -0800)
committerJens Axboe <axboe@kernel.dk>
Wed, 22 Jan 2014 04:16:56 +0000 (20:16 -0800)
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>
Cc: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/block/sx8.c

index 7b2ac95..d5e2d12 100644 (file)
@@ -1744,7 +1744,6 @@ static void carm_remove_one (struct pci_dev *pdev)
        kfree(host);
        pci_release_regions(pdev);
        pci_disable_device(pdev);
-       pci_set_drvdata(pdev, NULL);
 }
 
 module_pci_driver(carm_driver);