mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-20 05:35:22 +00:00
A lot of the Kconfig stuff gets copied around, so encourage a clean compact style: - Reduce license header spam - Fix some broken indentation - Turn a meaningless 'menuconfig' into a 'config' - Remove a redundant QMSI menu - Unscrunch comments: #Foo -> # Foo Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
14 lines
247 B
Plaintext
14 lines
247 B
Plaintext
# Kconfig - QMSI drivers configuration options
|
|
|
|
# Copyright (c) 2015 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config HAS_QMSI
|
|
bool
|
|
|
|
config QMSI
|
|
bool "QMSI driver support"
|
|
depends on HAS_QMSI
|
|
help
|
|
Enable QMSI driver support.
|