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

Commit 6aa1464d authored by Jean Delvare's avatar Jean Delvare Committed by Jean Delvare
Browse files

i2c-i801: Check for vendor Fujitsu before probing for apanel



Scanning the BIOS memory for the apanel information is costly, so
avoid doing it on non-Fujitsu machines.

Signed-off-by: default avatarJean Delvare <khali@linux-fr.org>
parent e7198fbf
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -931,6 +931,7 @@ static struct pci_driver i801_driver = {

static int __init i2c_i801_init(void)
{
	if (dmi_name_in_vendors("FUJITSU"))
		input_apanel_init();
	return pci_register_driver(&i801_driver);
}