diff options
author | Ville Syrjala <syrjala@sci.fi> | 2009-05-19 01:37:44 +0300 |
---|---|---|
committer | Jeff Garzik <jgarzik@redhat.com> | 2009-06-05 14:41:13 -0400 |
commit | 65e31643115349fd7a81acbe75ec4a54d5df8aad (patch) | |
tree | c52d336bf885c3c0678dbb75ceae5f5a2e27ece9 | |
parent | 9b10ae86d1616f46dabb67c663fe6a9c3a502663 (diff) | |
download | linux-65e31643115349fd7a81acbe75ec4a54d5df8aad.tar.bz2 |
ata_piix: Add HP Compaq nc6000 to the broken poweroff list
HP Compaq nc6000 suffers from the double disk spindown issue.
Add it to the broken poweroff DMI list.
Signed-off-by: Ville Syrjala <syrjala@sci.fi>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
-rw-r--r-- | drivers/ata/ata_piix.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/ata/ata_piix.c b/drivers/ata/ata_piix.c index d51a17c0f59b..1aeb7082b0c4 100644 --- a/drivers/ata/ata_piix.c +++ b/drivers/ata/ata_piix.c @@ -1455,6 +1455,15 @@ static bool piix_broken_system_poweroff(struct pci_dev *pdev) /* PCI slot number of the controller */ .driver_data = (void *)0x1FUL, }, + { + .ident = "HP Compaq nc6000", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), + DMI_MATCH(DMI_PRODUCT_NAME, "HP Compaq nc6000"), + }, + /* PCI slot number of the controller */ + .driver_data = (void *)0x1FUL, + }, { } /* terminate list */ }; |