Use this short header style in all Kconfig files:
# <description>
# <copyright>
# <license>
...
Also change all <description>s from
# Kconfig[.extension] - Foo-related options
to just
# Foo-related options
It's clear enough that it's about Kconfig.
The <description> cleanup was done with this command, along with some
manual cleanup (big letter at the start, etc.)
git ls-files '*Kconfig*' | \
xargs sed -i -E '1 s/#\s*Kconfig[\w.-]*\s*-\s*/# /'
Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
35 lines
664 B
Plaintext
35 lines
664 B
Plaintext
# VIDEO driver configuration options
|
||
|
||
# Copyright (c) 2019 Linaro Limited
|
||
# SPDX-License-Identifier: Apache-2.0
|
||
|
||
#
|
||
# VIDEO Drivers
|
||
#
|
||
menuconfig VIDEO
|
||
bool "VIDEO hardware support"
|
||
help
|
||
Enable support for the VIDEO.
|
||
|
||
if VIDEO
|
||
|
||
config VIDEO_BUFFER_POOL_SZ_MAX
|
||
int "Size of the largest buffer in the video pool"
|
||
default 1048576
|
||
|
||
config VIDEO_BUFFER_POOL_NUM_MAX
|
||
int "Number of maximum sized buffer in the video pool"
|
||
default 2
|
||
|
||
config VIDEO_BUFFER_POOL_ALIGN
|
||
int "Alignment of the video pool’s buffer"
|
||
default 64
|
||
|
||
source "drivers/video/Kconfig.mcux_csi"
|
||
|
||
source "drivers/video/Kconfig.sw_generator"
|
||
|
||
source "drivers/video/Kconfig.mt9m114"
|
||
|
||
endif # VIDEO
|