The patch titled pata_it821x: Suspend/Resume support has been removed from the -mm tree. Its filename was pata_it821x-suspend-resume-support.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: pata_it821x: Suspend/Resume support From: Alan Cox <alan@xxxxxxxxxx> If you are using the noraid option then after a suspend/resume sequence we need to reset the card back out of raid mode again. Signed-off-by: Alan Cox <alan@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/ata/pata_it821x.c | 16 ++++++++++++++-- 1 files changed, 14 insertions(+), 2 deletions(-) diff -puN drivers/ata/pata_it821x.c~pata_it821x-suspend-resume-support drivers/ata/pata_it821x.c --- a/drivers/ata/pata_it821x.c~pata_it821x-suspend-resume-support +++ a/drivers/ata/pata_it821x.c @@ -80,7 +80,7 @@ #define DRV_NAME "pata_it821x" -#define DRV_VERSION "0.3.2" +#define DRV_VERSION "0.3.3" struct it821x_dev { @@ -676,6 +676,8 @@ static struct scsi_host_template it821x_ .dma_boundary = ATA_DMA_BOUNDARY, .slave_configure = ata_scsi_slave_config, .bios_param = ata_std_bios_param, + .resume = ata_scsi_device_resume, + .suspend = ata_scsi_device_suspend, }; static struct ata_port_operations it821x_smart_port_ops = { @@ -808,6 +810,14 @@ static int it821x_init_one(struct pci_de return ata_pci_init_one(pdev, port_info, 2); } +static int it821x_reinit_one(struct pci_dev *pdev) +{ + /* Resume - turn raid back off if need be */ + if (it8212_noraid) + it821x_disable_raid(pdev); + return ata_pci_device_resume(pdev); +} + static const struct pci_device_id it821x[] = { { PCI_VDEVICE(ITE, PCI_DEVICE_ID_ITE_8211), }, { PCI_VDEVICE(ITE, PCI_DEVICE_ID_ITE_8212), }, @@ -819,7 +829,9 @@ static struct pci_driver it821x_pci_driv .name = DRV_NAME, .id_table = it821x, .probe = it821x_init_one, - .remove = ata_pci_remove_one + .remove = ata_pci_remove_one, + .suspend = ata_pci_device_suspend, + .resume = it821x_reinit_one, }; static int __init it821x_init(void) _ Patches currently in -mm which might be from alan@xxxxxxxxxx are git-libata-all.patch pci-move-pci_vdevice-from-libata-to-core.patch pata-libata-suspend-resume-simple-cases-fix.patch pata_cs5530-suspend-resume-support-tweak.patch pata_sil680-suspend-resume-tidy.patch pata_via-suspend-resume-support-fix.patch git-mtd.patch git-netdev-all.patch resend-iphase-64bit-cleanup.patch pci-introduce-pci_find_present.patch pci-fix-multiple-problems-with-via-hardware.patch pci-fix-multiple-problems-with-via-hardware-warning-fix.patch pci_module_init-convertion-in-tmscsimc.patch alpha-switch-to-pci_get-api.patch ioremap-balanced-with-iounmap-for-drivers-char-rio-rio_linuxc.patch ioremap-balanced-with-iounmap-for-drivers-char-moxac.patch ioremap-balanced-with-iounmap-for-drivers-char-istallionc.patch ide-complete-switch-to-pci_get.patch remove-drivers-pci-searchcpci_find_device_reverse.patch via82cxxx-handle-error-condition-properly.patch hz-300hz-support.patch ide_scsi-allow-it-to-be-used-for-non-cd-only.patch ide_scsi-allow-it-to-be-used-for-non-cd-only-fix.patch tty-signal-tty-locking.patch tty-signal-tty-locking-3270-fix.patch pci-mxser-pci-refcounts.patch tty-preparatory-structures-for-termios-revamp.patch tty-preparatory-structures-for-termios-revamp-strip-fix.patch tty-switch-to-ktermios-and-new-framework.patch tty-switch-to-ktermios-and-new-framework-warning-fix.patch tty-switch-to-ktermios-and-new-framework-irda-fix.patch tty-switch-to-ktermios.patch tty-switch-to-ktermios-nozomi-fix.patch tty-switch-to-ktermios-sclp-fix.patch tty-switch-to-ktermios-powerpc-fix.patch tty-switch-to-ktermios-uml-fix-2.patch tty_ioctl-use-termios-for-the-old-structure-and-termios2.patch tty_ioctl-use-termios-for-the-old-structure-and-termios2-fix.patch tty_ioctl-use-termios-for-the-old-structure-and-termios2-update.patch termios-enable-new-style-termios-ioctls-on-x86-64.patch char-isicom-expand-function.patch char-isicom-rename-init-function.patch char-isicom-remove-isa-code.patch char-isicom-remove-unneeded-memset.patch char-isicom-move-to-tty_register_device.patch char-isicom-use-pci_request_region.patch char-isicom-check-kmalloc-retval.patch drivers-isdn-trivial-vsnprintf-conversion.patch ide-more-conversion-to-pci_get-apis.patch igafb-switch-to-pci_get-api.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html