diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-05-23 01:08:32 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-05-23 01:08:32 -0400 |
commit | d798f7f080805ad7e15fc37a43d8c6f91edb6dda (patch) | |
tree | 73e3783cb619d3a5dc40a5f32859f063b5cd0664 /drivers/ide/pmac.c | |
parent | e98bae7592a44bdce2e49ccd64f3c7ffe244a0f6 (diff) | |
parent | db210f824c2f155703edf03bc2137da1bd76e27d (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide-2.6
* git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide-2.6:
ide/ide-scan-pci.c: Use for_each_pci_dev().
ide: Use linux/mutex.h
IDE: ide-floppy, remove unnecessary NULL check
drivers/ide/pmac.c: Remove unnecessary casts of pci_get_drvdata
ide: fix use after free in ide-acpi
Diffstat (limited to 'drivers/ide/pmac.c')
-rw-r--r-- | drivers/ide/pmac.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/ide/pmac.c b/drivers/ide/pmac.c index ebcf8e470a97..1db7c4368dbf 100644 --- a/drivers/ide/pmac.c +++ b/drivers/ide/pmac.c | |||
@@ -1334,7 +1334,7 @@ out_free_pmif: | |||
1334 | static int | 1334 | static int |
1335 | pmac_ide_pci_suspend(struct pci_dev *pdev, pm_message_t mesg) | 1335 | pmac_ide_pci_suspend(struct pci_dev *pdev, pm_message_t mesg) |
1336 | { | 1336 | { |
1337 | pmac_ide_hwif_t *pmif = (pmac_ide_hwif_t *)pci_get_drvdata(pdev); | 1337 | pmac_ide_hwif_t *pmif = pci_get_drvdata(pdev); |
1338 | int rc = 0; | 1338 | int rc = 0; |
1339 | 1339 | ||
1340 | if (mesg.event != pdev->dev.power.power_state.event | 1340 | if (mesg.event != pdev->dev.power.power_state.event |
@@ -1350,7 +1350,7 @@ pmac_ide_pci_suspend(struct pci_dev *pdev, pm_message_t mesg) | |||
1350 | static int | 1350 | static int |
1351 | pmac_ide_pci_resume(struct pci_dev *pdev) | 1351 | pmac_ide_pci_resume(struct pci_dev *pdev) |
1352 | { | 1352 | { |
1353 | pmac_ide_hwif_t *pmif = (pmac_ide_hwif_t *)pci_get_drvdata(pdev); | 1353 | pmac_ide_hwif_t *pmif = pci_get_drvdata(pdev); |
1354 | int rc = 0; | 1354 | int rc = 0; |
1355 | 1355 | ||
1356 | if (pdev->dev.power.power_state.event != PM_EVENT_ON) { | 1356 | if (pdev->dev.power.power_state.event != PM_EVENT_ON) { |