Change-Id: I6a9d71e69ed9230b92f0f330875515a5df29fc06 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/29312 Reviewed-by: Nico Huber <nico.h@gmx.de> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
12 lines
227 B
C
12 lines
227 B
C
#ifndef PC80_KEYBOARD_H
|
|
#define PC80_KEYBOARD_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#define NO_AUX_DEVICE 0
|
|
#define PROBE_AUX_DEVICE 1
|
|
|
|
uint8_t pc_keyboard_init(uint8_t probe_aux);
|
|
void set_kbc_ps2_mode(void);
|
|
|
|
#endif /* PC80_KEYBOARD_H */
|