Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 03e6f489 authored by Daniel Exner's avatar Daniel Exner Committed by Bartlomiej Zolnierkiewicz
Browse files

pata_ali/alim15x3: override 80-wire cable detection for Toshiba S1800-814



Add Toshiba S1800-814 to whitelist for both pata_ali and alim15x3,
as it is correctly detected as 40-wire connected but this cable is
short enough to still use transfer modes higher than UDMA33.

Signed-off-by: default avatarDaniel Exner <dex@dragonslave.de>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Signed-off-by: default avatarBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
parent 2808b0a9
Loading
Loading
Loading
Loading
+7 −0
Original line number Original line Diff line number Diff line
@@ -48,6 +48,13 @@ static struct dmi_system_id cable_dmi_table[] = {
			DMI_MATCH(DMI_BOARD_VERSION, "OmniBook N32N-736"),
			DMI_MATCH(DMI_BOARD_VERSION, "OmniBook N32N-736"),
		},
		},
	},
	},
	{
		.ident = "Toshiba Satelite S1800-814",
		.matches = {
			DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
			DMI_MATCH(DMI_PRODUCT_NAME, "S1800-814"),
		},
	},
	{ }
	{ }
};
};


+7 −0
Original line number Original line Diff line number Diff line
@@ -596,6 +596,13 @@ static struct dmi_system_id cable_dmi_table[] = {
			DMI_MATCH(DMI_BOARD_VERSION, "OmniBook N32N-736"),
			DMI_MATCH(DMI_BOARD_VERSION, "OmniBook N32N-736"),
		},
		},
	},
	},
	{
		.ident = "Toshiba Satellite S1800-814",
		.matches = {
			DMI_MATCH(DMI_SYS_VENDOR, "TOSHIBA"),
			DMI_MATCH(DMI_PRODUCT_NAME, "S1800-814"),
		},
	},
	{ }
	{ }
};
};