mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
macintosh/adb: Use swap() to make code cleaner
Use the macro 'swap()' defined in 'include/linux/minmax.h' to avoid opencoding it. Reported-by: Zeal Robot <zealci@zte.com.cn> Signed-off-by: Yang Guang <yang.guang5@zte.com.cn> Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/20211104011456.1027830-1-yang.guang5@zte.com.cn
This commit is contained in:
parent
887f56a07f
commit
6130ed79de
@ -816,9 +816,7 @@ adbhid_input_register(int id, int default_id, int original_handler_id,
|
||||
case 0xC4: case 0xC7:
|
||||
keyboard_type = "ISO, swapping keys";
|
||||
input_dev->id.version = ADB_KEYBOARD_ISO;
|
||||
i = hid->keycode[10];
|
||||
hid->keycode[10] = hid->keycode[50];
|
||||
hid->keycode[50] = i;
|
||||
swap(hid->keycode[10], hid->keycode[50]);
|
||||
break;
|
||||
|
||||
case 0x12: case 0x15: case 0x16: case 0x17: case 0x1A:
|
||||
|
Loading…
Reference in New Issue
Block a user