1 /* SPDX-License-Identifier: GPL-2.0 */ 1 2 #ifndef _VIVALDI_FMAP_H 3 #define _VIVALDI_FMAP_H 4 5 #include <linux/types.h> 6 7 #define VIVALDI_MAX_FUNCTION_ROW_KEYS 24 8 9 /** 10 * struct vivaldi_data - Function row map data 11 * @function_row_physmap: An array of scancode 12 * codes, encoded rows/ 13 * row function keys, i 14 * @num_function_row_keys: The number of top r 15 * 16 * This structure is supposed to be used by Ch 17 * the Vivaldi keyboard function row design. 18 */ 19 struct vivaldi_data { 20 u32 function_row_physmap[VIVALDI_MAX_F 21 unsigned int num_function_row_keys; 22 }; 23 24 ssize_t vivaldi_function_row_physmap_show(cons 25 char 26 27 #endif /* _VIVALDI_FMAP_H */ 28
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.