]> git.ipfire.org Git - thirdparty/linux.git/blame - arch/parisc/include/asm/kbdleds.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[thirdparty/linux.git] / arch / parisc / include / asm / kbdleds.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
b2d0b7a0
JC
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
11static 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 */