DMI_MATCH(DMI_PRODUCT_NAME, "UL30A"),
                },
        },
+       {
+        .callback = video_detect_force_vendor,
+        /* Asus X55U */
+        .matches = {
+               DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
+               DMI_MATCH(DMI_PRODUCT_NAME, "X55U"),
+               },
+       },
+       {
+        .callback = video_detect_force_vendor,
+        /* Asus X101CH */
+        .matches = {
+               DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
+               DMI_MATCH(DMI_PRODUCT_NAME, "X101CH"),
+               },
+       },
+       {
+        .callback = video_detect_force_vendor,
+        /* Asus X401U */
+        .matches = {
+               DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
+               DMI_MATCH(DMI_PRODUCT_NAME, "X401U"),
+               },
+       },
+       {
+        .callback = video_detect_force_vendor,
+        /* Asus X501U */
+        .matches = {
+               DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
+               DMI_MATCH(DMI_PRODUCT_NAME, "X501U"),
+               },
+       },
+       {
+        .callback = video_detect_force_vendor,
+        /* Asus 1015CX */
+        .matches = {
+               DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
+               DMI_MATCH(DMI_PRODUCT_NAME, "1015CX"),
+               },
+       },
        {
        .callback = video_detect_force_vendor,
        /* GIGABYTE GB-BXBT-2807 */
 
 
 /*
  * For those machines that need software to control bt/wifi status
- * and can't adjust brightness through ACPI interface
  * and have duplicate events(ACPI and WMI) for display toggle
  */
 static struct quirk_entry quirk_asus_x55u = {
        .wapf = 4,
-       .wmi_backlight_power = true,
        .wmi_backlight_set_devstate = true,
        .no_display_toggle = true,
 };
                        DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
                        DMI_MATCH(DMI_PRODUCT_NAME, "U32U"),
                },
-               /*
-                * Note this machine has a Brazos APU, and most Brazos Asus
-                * machines need quirk_asus_x55u / wmi_backlight_power but
-                * here acpi-video seems to work fine for backlight control.
-                */
                .driver_data = &quirk_asus_wapf4,
        },
        {
 
        if (asus->driver->quirks->wmi_force_als_set)
                asus_wmi_set_als();
 
-       if (asus->driver->quirks->wmi_backlight_power)
-               acpi_video_set_dmi_backlight_type(acpi_backlight_vendor);
-
        if (asus->driver->quirks->wmi_backlight_native)
                acpi_video_set_dmi_backlight_type(acpi_backlight_native);
 
 
        bool hotplug_wireless;
        bool scalar_panel_brightness;
        bool store_backlight_power;
-       bool wmi_backlight_power;
        bool wmi_backlight_native;
        bool wmi_backlight_set_devstate;
        bool wmi_force_als_set;
 
        .store_backlight_power = true,
 };
 
-static struct quirk_entry quirk_asus_x101ch = {
-       /* We need this when ACPI function doesn't do this well */
-       .wmi_backlight_power = true,
-};
-
 static struct quirk_entry *quirks;
 
 static void et2012_quirks(void)
                },
                .driver_data = &quirk_asus_unknown,
        },
-       {
-               .callback = dmi_matched,
-               .ident = "ASUSTeK Computer INC. X101CH",
-               .matches = {
-                       DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
-                       DMI_MATCH(DMI_PRODUCT_NAME, "X101CH"),
-               },
-               .driver_data = &quirk_asus_x101ch,
-       },
-       {
-               .callback = dmi_matched,
-               .ident = "ASUSTeK Computer INC. 1015CX",
-               .matches = {
-                       DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK COMPUTER INC."),
-                       DMI_MATCH(DMI_PRODUCT_NAME, "1015CX"),
-               },
-               .driver_data = &quirk_asus_x101ch,
-       },
-       {},
+       {}
 };
 
 static void eeepc_wmi_key_filter(struct asus_wmi_driver *asus_wmi, int *code,