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.

Merge tag 'platform-drivers-x86-v6.5-5' of git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86

Pull x86 platform driver fixes from Hans de Goede:
"Final set of three small fixes for 6.5"

* tag 'platform-drivers-x86-v6.5-5' of git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86:
platform/mellanox: Fix mlxbf-tmfifo not handling all virtio CONSOLE notifications
platform/x86: ideapad-laptop: Add support for new hotkeys found on ThinkBook 14s Yoga ITL
platform/x86: lenovo-ymc: Add Lenovo Yoga 7 14ACN6 to ec_trigger_quirk_dmi_table

+13
+1
drivers/platform/mellanox/mlxbf-tmfifo.c
··· 887 887 tm_vdev = fifo->vdev[VIRTIO_ID_CONSOLE]; 888 888 mlxbf_tmfifo_console_output(tm_vdev, vring); 889 889 spin_unlock_irqrestore(&fifo->spin_lock[0], flags); 890 + set_bit(MLXBF_TM_TX_LWM_IRQ, &fifo->pend_events); 890 891 } else if (test_and_set_bit(MLXBF_TM_TX_LWM_IRQ, 891 892 &fifo->pend_events)) { 892 893 return true;
+5
drivers/platform/x86/ideapad-laptop.c
··· 1049 1049 { KE_IGNORE, 0x03 | IDEAPAD_WMI_KEY }, 1050 1050 /* Customizable Lenovo Hotkey ("star" with 'S' inside) */ 1051 1051 { KE_KEY, 0x01 | IDEAPAD_WMI_KEY, { KEY_FAVORITES } }, 1052 + { KE_KEY, 0x04 | IDEAPAD_WMI_KEY, { KEY_SELECTIVE_SCREENSHOT } }, 1053 + /* Lenovo Support */ 1054 + { KE_KEY, 0x07 | IDEAPAD_WMI_KEY, { KEY_HELP } }, 1055 + { KE_KEY, 0x0e | IDEAPAD_WMI_KEY, { KEY_PICKUP_PHONE } }, 1056 + { KE_KEY, 0x0f | IDEAPAD_WMI_KEY, { KEY_HANGUP_PHONE } }, 1052 1057 /* Dark mode toggle */ 1053 1058 { KE_KEY, 0x13 | IDEAPAD_WMI_KEY, { KEY_PROG1 } }, 1054 1059 /* Sound profile switch */
+7
drivers/platform/x86/lenovo-ymc.c
··· 36 36 DMI_MATCH(DMI_PRODUCT_NAME, "82QF"), 37 37 }, 38 38 }, 39 + { 40 + /* Lenovo Yoga 7 14ACN6 */ 41 + .matches = { 42 + DMI_MATCH(DMI_SYS_VENDOR, "LENOVO"), 43 + DMI_MATCH(DMI_PRODUCT_NAME, "82N7"), 44 + }, 45 + }, 39 46 { } 40 47 }; 41 48