Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/parisc/include/asm/kbdleds.h
26298 views
1
/* SPDX-License-Identifier: GPL-2.0 */
2
#ifndef _ASM_PARISC_KBDLEDS_H
3
#define _ASM_PARISC_KBDLEDS_H
4
5
/*
6
* On HIL keyboards of PARISC machines there is no NumLock key and
7
* everyone expects the keypad to be used for numbers. That's why
8
* we can safely turn on the NUMLOCK bit.
9
*/
10
11
static inline int kbd_defleds(void)
12
{
13
#if defined(CONFIG_KEYBOARD_HIL) || defined(CONFIG_KEYBOARD_HIL_OLD)
14
return 1 << VC_NUMLOCK;
15
#else
16
return 0;
17
#endif
18
}
19
20
#endif /* _ASM_PARISC_KBDLEDS_H */
21
22