mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
10 lines
170 B
C
10 lines
170 B
C
#ifndef PART_KEYBOARD_H
|
|
#define KEYBOARD_H
|
|
|
|
#ifndef NO_KEYBOARD
|
|
void keyboard_on(void);
|
|
#else
|
|
# define keyboard_on() do {} while(0)
|
|
#endif
|
|
|
|
#endif /* PART_KEYBOARD_H */
|