1# USB-C VBUS Measurement configuration options
2
3# Copyright 2022 The Chromium OS Authors
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig USBC_VBUS_DRIVER
7	bool "USB-C VBUS drivers"
8	help
9	  Enable USB-C drivers
10
11if USBC_VBUS_DRIVER
12
13config USBC_VBUS_INIT_PRIORITY
14	int "USB-C VBUS driver init priority"
15	default 85
16	help
17	  Initialization priority of the USB-C VBUS measurement drivers in POST_KERNEL.
18
19source "drivers/usb_c/vbus/Kconfig.usbc_vbus_adc"
20
21endif # USBC_VBUS_DRIVER
22
23module = USBC
24module-str = usbc
25source "subsys/logging/Kconfig.template.log_config"
26