Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a1f9ce05 authored by Horms's avatar Horms Committed by James Bottomley
Browse files

[SCSI] fusion: remove unnecessary code in mptscsih_resume()



It seems that most of the code in mptscsih_resume() doesn't
do anything. This patch removes that code.

Signed-off-by: default avatarSimon Horman <horms@verge.net.au>
Acked-by: default avatar"Moore, Eric" <Eric.Moore@lsi.com>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@SteelEye.com>
parent 5f9279f2
Loading
Loading
Loading
Loading
+0 −12
Original line number Diff line number Diff line
@@ -1188,19 +1188,7 @@ mptscsih_suspend(struct pci_dev *pdev, pm_message_t state)
int
mptscsih_resume(struct pci_dev *pdev)
{
	MPT_ADAPTER 		*ioc = pci_get_drvdata(pdev);
	struct Scsi_Host 	*host = ioc->sh;
	MPT_SCSI_HOST		*hd;

	mpt_resume(pdev);

	if(!host)
		return 0;

	hd = (MPT_SCSI_HOST *)host->hostdata;
	if(!hd)
		return 0;

	return 0;
}