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 13# zephyr-keep-sorted-start 14source "drivers/ps2/Kconfig.npcx" 15source "drivers/ps2/Kconfig.xec" 16# zephyr-keep-sorted-stop 17 18module = PS2 19module-str = ps2 20source "subsys/logging/Kconfig.template.log_config" 21 22config PS2_INIT_PRIORITY 23 int "PS/2 driver init priority" 24 default 40 25 help 26 PS/2 device driver initialization priority. 27 There isn't any critical component relying on this priority at 28 the moment. 29 30endif # PS2 31