diff options
author | Seungwon Jeon <tgih.jun@samsung.com> | 2013-06-27 06:31:54 +0200 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2013-06-28 22:11:28 +0200 |
commit | 2953f850c3b80bdca004967c83733365d8aa0aa2 (patch) | |
tree | de80e56c2a9f42ab51bb50d05c40c31ed643a454 /drivers/scsi/ufs/ufshcd-pci.c | |
parent | [SCSI] ufs: Fix the response UPIU length setting (diff) | |
download | linux-2953f850c3b80bdca004967c83733365d8aa0aa2.tar.xz linux-2953f850c3b80bdca004967c83733365d8aa0aa2.zip |
[SCSI] ufs: use devres functions for ufshcd
This patch replaces normal calls for resource allocation with devm_*()
derivative functions. It makes resource freeing simpler.
Signed-off-by: Seungwon Jeon <tgih.jun@samsung.com>
Signed-off-by: Santosh Y <santoshsy@gmail.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi/ufs/ufshcd-pci.c')
-rw-r--r-- | drivers/scsi/ufs/ufshcd-pci.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/scsi/ufs/ufshcd-pci.c b/drivers/scsi/ufs/ufshcd-pci.c index 5cb1d75f5868..48be39a6f6d7 100644 --- a/drivers/scsi/ufs/ufshcd-pci.c +++ b/drivers/scsi/ufs/ufshcd-pci.c @@ -92,7 +92,6 @@ static void ufshcd_pci_remove(struct pci_dev *pdev) struct ufs_hba *hba = pci_get_drvdata(pdev); disable_irq(pdev->irq); - free_irq(pdev->irq, hba); ufshcd_remove(hba); pci_release_regions(pdev); pci_set_drvdata(pdev, NULL); |