diff options
author | Matan Ziv-Av <matan@svgalib.org> | 2021-11-23 22:14:55 +0200 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2021-11-25 16:31:22 +0100 |
commit | 48d5e836ebc09cb766ab5e11945fa7e89120a3f6 (patch) | |
tree | 8c4028f20fa91fd9eec81b859ac4dcff915dda40 /drivers/platform | |
parent | be892e95361fb72365a4f81475a34c5d43e36708 (diff) | |
download | linux-48d5e836ebc09cb766ab5e11945fa7e89120a3f6.tar.bz2 |
platform/x86: lg-laptop: Recognize more models
LG uses 5 instead of 0 in the third digit (second digit after 2019)
of the year string to indicate newer models in the same year.
Handle this case as well.
Signed-off-by: Matan Ziv-Av <matan@svgalib.org>
Link: https://lore.kernel.org/r/c752b3b2-9718-bd9a-732d-e165aa8a1fca@svgalib.org
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Diffstat (limited to 'drivers/platform')
-rw-r--r-- | drivers/platform/x86/lg-laptop.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/platform/x86/lg-laptop.c b/drivers/platform/x86/lg-laptop.c index ae9293024c77..a91847a551a7 100644 --- a/drivers/platform/x86/lg-laptop.c +++ b/drivers/platform/x86/lg-laptop.c @@ -657,6 +657,18 @@ static int acpi_add(struct acpi_device *device) if (product && strlen(product) > 4) switch (product[4]) { case '5': + if (strlen(product) > 5) + switch (product[5]) { + case 'N': + year = 2021; + break; + case '0': + year = 2016; + break; + default: + year = 2022; + } + break; case '6': year = 2016; break; |