1# I2S (Inter-IC Sound) driver configuration options 2 3# Copyright (c) 2017 Piotr Mienkowski 4# SPDX-License-Identifier: Apache-2.0 5 6# 7# I2S Drivers 8# 9menuconfig I2S 10 bool "Inter-IC Sound (I2S) bus drivers" 11 help 12 Enable support for the I2S (Inter-IC Sound) hardware bus. 13 14if I2S 15 16config I2S_INIT_PRIORITY 17 int "Init priority" 18 default KERNEL_INIT_PRIORITY_DEVICE 19 help 20 Device driver initialization priority. 21 22module = I2S 23module-str = i2s 24source "subsys/logging/Kconfig.template.log_config" 25 26comment "Device Drivers" 27 28source "drivers/i2s/Kconfig.*" 29 30endif # I2S 31