diff options
Diffstat (limited to 'drivers/ide/ide-pm.c')
| -rw-r--r-- | drivers/ide/ide-pm.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ide/ide-pm.c b/drivers/ide/ide-pm.c index abb84a2dd82..0c206c68bbb 100644 --- a/drivers/ide/ide-pm.c +++ b/drivers/ide/ide-pm.c @@ -5,7 +5,7 @@  int generic_ide_suspend(struct device *dev, pm_message_t mesg)  {  	ide_drive_t *drive = dev->driver_data, *pair = ide_get_pair_dev(drive); -	ide_hwif_t *hwif = HWIF(drive); +	ide_hwif_t *hwif = drive->hwif;  	struct request *rq;  	struct request_pm_state rqpm;  	ide_task_t args; @@ -39,7 +39,7 @@ int generic_ide_suspend(struct device *dev, pm_message_t mesg)  int generic_ide_resume(struct device *dev)  {  	ide_drive_t *drive = dev->driver_data, *pair = ide_get_pair_dev(drive); -	ide_hwif_t *hwif = HWIF(drive); +	ide_hwif_t *hwif = drive->hwif;  	struct request *rq;  	struct request_pm_state rqpm;  	ide_task_t args;  |