From 0e6f5e8cb97028902d88e7ad27d5e81d676e100c Mon Sep 17 00:00:00 2001 From: Peter Schwenke Date: Tue, 18 Sep 2007 15:59:50 +1000 Subject: [PATCH] UBUNTU: OriginalAuthor: John Schember OriginalLocation: http://bugzilla.kernel.org/show_bug.cgi?id=7780#c106 Bug: 139045 It appears that the case varies for the Product Name returned by dmidecode for different models of the U200. This is for the case "Satellite U200". My previous patch has "SATELLITE U200". Signed-off-by: Peter Schwenke --- drivers/ata/ata_piix.c | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/drivers/ata/ata_piix.c b/drivers/ata/ata_piix.c index e672e99..6a4f031 100644 --- a/drivers/ata/ata_piix.c +++ b/drivers/ata/ata_piix.c @@ -928,6 +928,13 @@ static int piix_broken_suspend(void) DMI_MATCH(DMI_PRODUCT_NAME, "SATELLITE U200"), }, }, + { + .ident = "Satellite U200", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"), + DMI_MATCH(DMI_PRODUCT_NAME, "Satellite U200"), + }, + }, { } }; static const char *oemstrs[] = { -- 1.5.2.5