platform/x86: msi-laptop: Change DMI match / alias strings to fix module autoloading
authorHans de Goede <hdegoede@redhat.com>
Sat, 17 Sep 2022 21:04:07 +0000 (23:04 +0200)
committerHans de Goede <hdegoede@redhat.com>
Mon, 19 Sep 2022 12:44:22 +0000 (14:44 +0200)
On a MSI S270 with Fedora 37 x86_64 / systemd-251.4 the module does not
properly autoload.

This is likely caused by issues with how systemd-udevd handles the single
quote char (') which is part of the sys_vendor / chassis_vendor strings
on this laptop. As a workaround remove the single quote char + everything
behind it from the sys_vendor + chassis_vendor matches. This fixes
the module not autoloading.

Link: https://github.com/systemd/systemd/issues/24715
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Link: https://lore.kernel.org/r/20220917210407.647432-1-hdegoede@redhat.com
drivers/platform/x86/msi-laptop.c

index 1c29678..2f85039 100644 (file)
@@ -602,11 +602,10 @@ static const struct dmi_system_id msi_dmi_table[] __initconst = {
        {
                .ident = "MSI S270",
                .matches = {
-                       DMI_MATCH(DMI_SYS_VENDOR, "MICRO-STAR INT'L CO.,LTD"),
+                       DMI_MATCH(DMI_SYS_VENDOR, "MICRO-STAR INT"),
                        DMI_MATCH(DMI_PRODUCT_NAME, "MS-1013"),
                        DMI_MATCH(DMI_PRODUCT_VERSION, "0131"),
-                       DMI_MATCH(DMI_CHASSIS_VENDOR,
-                                 "MICRO-STAR INT'L CO.,LTD")
+                       DMI_MATCH(DMI_CHASSIS_VENDOR, "MICRO-STAR INT")
                },
                .driver_data = &quirk_old_ec_model,
                .callback = dmi_check_cb
@@ -639,8 +638,7 @@ static const struct dmi_system_id msi_dmi_table[] __initconst = {
                        DMI_MATCH(DMI_SYS_VENDOR, "NOTEBOOK"),
                        DMI_MATCH(DMI_PRODUCT_NAME, "SAM2000"),
                        DMI_MATCH(DMI_PRODUCT_VERSION, "0131"),
-                       DMI_MATCH(DMI_CHASSIS_VENDOR,
-                                 "MICRO-STAR INT'L CO.,LTD")
+                       DMI_MATCH(DMI_CHASSIS_VENDOR, "MICRO-STAR INT")
                },
                .driver_data = &quirk_old_ec_model,
                .callback = dmi_check_cb