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

Commit b004b21c authored by Mario Limonciello's avatar Mario Limonciello Committed by Darren Hart (VMware)
Browse files

platform/x86: dell-smbios: Match on www.dell.com in OEM strings too



Sergey reported that some much older Dell systems don't support
the OEM string "Dell System" but instead supported www.dell.com
in OEM strings.

Match both of these to indicate that this driver is running on
a Dell system.

Reported-by: default avatarSergey Kubushyn <ksi@koi8.net>
Tested-by: default avatarSergey Kubushyn <ksi@koi8.net>
Signed-off-by: default avatarMario Limonciello <mario.limonciello@dell.com>
[dvhart: Simplify DMI logic and eliminate unnecessary variables]
Signed-off-by: default avatarDarren Hart (VMware) <dvhart@infradead.org>
parent 8fddfb39
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -555,11 +555,10 @@ static void free_group(struct platform_device *pdev)

static int __init dell_smbios_init(void)
{
	const struct dmi_device *valid;
	int ret, wmi, smm;

	valid = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, "Dell System", NULL);
	if (!valid) {
	if (!dmi_find_device(DMI_DEV_TYPE_OEM_STRING, "Dell System", NULL) &&
	    !dmi_find_device(DMI_DEV_TYPE_OEM_STRING, "www.dell.com", NULL)) {
		pr_err("Unable to run on non-Dell system\n");
		return -ENODEV;
	}