mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 14:42:24 +00:00
skd: remove redundant skdev->pdev assignment from skd_pci_probe()
skdev->pdev is set to pdev twice in skd_pci_probe(), first time through skd_construct() call and the second time directly in the function. Remove the second assignment as it is not needed. Cc: Akhil Bhansali <abhansali@stec-inc.com> Cc: Jeff Moyer <jmoyer@redhat.com> Signed-off-by: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
This commit is contained in:
parent
4ca90b5332
commit
ebedd16dab
@ -4925,7 +4925,7 @@ static int skd_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
|||||||
|
|
||||||
|
|
||||||
pci_set_drvdata(pdev, skdev);
|
pci_set_drvdata(pdev, skdev);
|
||||||
skdev->pdev = pdev;
|
|
||||||
skdev->disk->driverfs_dev = &pdev->dev;
|
skdev->disk->driverfs_dev = &pdev->dev;
|
||||||
|
|
||||||
for (i = 0; i < SKD_MAX_BARS; i++) {
|
for (i = 0; i < SKD_MAX_BARS; i++) {
|
||||||
|
Loading…
Reference in New Issue
Block a user