eeepc-wmi: split et2012 specific hacks
Signed-off-by: Corentin Chary <corentin.chary@gmail.com> Signed-off-by: Matthew Garrett <mjg@redhat.com>
This commit is contained in:
Родитель
c55d995dd3
Коммит
7a61d02074
|
@ -109,26 +109,32 @@ static struct quirk_entry quirk_asus_et2012_type3 = {
|
||||||
|
|
||||||
static struct quirk_entry *quirks;
|
static struct quirk_entry *quirks;
|
||||||
|
|
||||||
|
static void et2012_quirks(void)
|
||||||
|
{
|
||||||
|
const struct dmi_device *dev = NULL;
|
||||||
|
char oemstring[30];
|
||||||
|
|
||||||
|
while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
|
||||||
|
if (sscanf(dev->name, "AEMS%24c", oemstring) == 1) {
|
||||||
|
if (oemstring[18] == '1')
|
||||||
|
quirks = &quirk_asus_et2012_type1;
|
||||||
|
else if (oemstring[18] == '3')
|
||||||
|
quirks = &quirk_asus_et2012_type3;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static int dmi_matched(const struct dmi_system_id *dmi)
|
static int dmi_matched(const struct dmi_system_id *dmi)
|
||||||
{
|
{
|
||||||
char *model;
|
char *model;
|
||||||
|
|
||||||
quirks = dmi->driver_data;
|
quirks = dmi->driver_data;
|
||||||
|
|
||||||
model = (char *)dmi->matches[1].substr;
|
model = (char *)dmi->matches[1].substr;
|
||||||
if (unlikely(strncmp(model, "ET2012", 6) == 0)) {
|
if (unlikely(strncmp(model, "ET2012", 6) == 0))
|
||||||
const struct dmi_device *dev = NULL;
|
et2012_quirks();
|
||||||
char oemstring[30];
|
|
||||||
while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING,
|
|
||||||
NULL, dev))) {
|
|
||||||
if (sscanf(dev->name, "AEMS%24c", oemstring) == 1) {
|
|
||||||
if (oemstring[18] == '1')
|
|
||||||
quirks = &quirk_asus_et2012_type1;
|
|
||||||
else if (oemstring[18] == '3')
|
|
||||||
quirks = &quirk_asus_et2012_type3;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче