1# PS/2 configuration options
2
3# Copyright (c) 2019 Intel Corporation
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig PS2
7	bool "PS/2 drivers"
8	help
9	  Include PS/2 drivers in system config.
10
11if PS2
12
13source "drivers/ps2/Kconfig.xec"
14source "drivers/ps2/Kconfig.npcx"
15
16module = PS2
17module-str = ps2
18source "subsys/logging/Kconfig.template.log_config"
19
20config PS2_INIT_PRIORITY
21	int "PS/2 driver init priority"
22	default 40
23	help
24	  PS/2 device driver initialization priority.
25	  There isn't any critical component relying on this priority at
26	  the moment.
27
28endif # PS2
29