zephyr/drivers/i2c/target/Kconfig
Daniel Schultz 307eca452e drivers: i2c: Add zephyr-keep-sorted defines
The previous re-organization has the zephyr-keep-sorted defines
missing. Add them for the I2C drivers and targets. Also
moved lines to fix out-of-order violations.

Signed-off-by: Daniel Schultz <d.schultz@phytec.de>
2025-01-08 01:30:34 +01:00

33 lines
641 B
Plaintext

# I2C Target configuration options
# Copyright (c) 2017 BayLibre, SAS
# SPDX-License-Identifier: Apache-2.0
#
# I2C options
#
menuconfig I2C_TARGET
bool "I2C Target Drivers"
help
Enable I2C Target Driver Configuration
if I2C_TARGET
config I2C_TARGET_INIT_PRIORITY
int "Init priority"
default 60
help
I2C Target device driver initialization priority.
config I2C_TARGET_BUFFER_MODE
bool "I2C target driver for buffer mode [EXPERIMENTAL]"
select EXPERIMENTAL
help
This is an option to enable buffer mode.
# zephyr-keep-sorted-start
source "drivers/i2c/target/Kconfig.eeprom"
# zephyr-keep-sorted-stop
endif # I2C_TARGET