1# I2C Target configuration options
2
3# Copyright (c) 2017 BayLibre, SAS
4# SPDX-License-Identifier: Apache-2.0
5
6#
7# I2C options
8#
9menuconfig I2C_TARGET
10	bool "I2C Target Drivers"
11	help
12	  Enable I2C Target Driver Configuration
13
14if I2C_TARGET
15
16config I2C_TARGET_INIT_PRIORITY
17	int "Init priority"
18	default 60
19	help
20	  I2C Target device driver initialization priority.
21
22source "drivers/i2c/target/Kconfig.eeprom"
23
24endif # I2C_TARGET
25