Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Input: synaptics-rmi4 - support bootloader v8 in f34v7

With the recent addition of the F3A support, we can now accept
bootloader v8, which will help support recent Thinkpads.

Acked-by: Lyude Paul <lyude@redhat.com>
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Link: https://lore.kernel.org/r/20200930225046.173190-2-Jason@zx2c4.com
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

authored by

Jason A. Donenfeld and committed by
Dmitry Torokhov
a6977d75 9e4c596b

+7 -2
+7 -2
drivers/input/rmi4/rmi_f34v7.c
··· 1364 1364 f34->bl_version = 6; 1365 1365 } else if (f34->bootloader_id[1] == 7) { 1366 1366 f34->bl_version = 7; 1367 + } else if (f34->bootloader_id[1] == 8) { 1368 + f34->bl_version = 8; 1367 1369 } else { 1368 - dev_err(&f34->fn->dev, "%s: Unrecognized bootloader version\n", 1369 - __func__); 1370 + dev_err(&f34->fn->dev, 1371 + "%s: Unrecognized bootloader version: %d (%c) %d (%c)\n", 1372 + __func__, 1373 + f34->bootloader_id[0], f34->bootloader_id[0], 1374 + f34->bootloader_id[1], f34->bootloader_id[1]); 1370 1375 return -EINVAL; 1371 1376 } 1372 1377