We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be892e9 commit 48d5e83Copy full SHA for 48d5e83
drivers/platform/x86/lg-laptop.c
@@ -657,6 +657,18 @@ static int acpi_add(struct acpi_device *device)
657
if (product && strlen(product) > 4)
658
switch (product[4]) {
659
case '5':
660
+ if (strlen(product) > 5)
661
+ switch (product[5]) {
662
+ case 'N':
663
+ year = 2021;
664
+ break;
665
+ case '0':
666
+ year = 2016;
667
668
+ default:
669
+ year = 2022;
670
+ }
671
672
case '6':
673
year = 2016;
674
break;
0 commit comments