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>
48 lines
1.0 KiB
Plaintext
48 lines
1.0 KiB
Plaintext
# Atmel ATAES132A configuration options
|
|
|
|
# Copyright (c) 2017 Intel Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
menuconfig CRYPTO_ATAES132A
|
|
bool "Atmel ATAES132A 32k AES Serial EEPROM support"
|
|
depends on I2C
|
|
help
|
|
Enable Atmel ATAES132A 32k AES Serial EEPROM support.
|
|
|
|
if CRYPTO_ATAES132A
|
|
|
|
config CRYPTO_ATAES132A_DRV_NAME
|
|
string "Driver's name"
|
|
default "ataes132a"
|
|
help
|
|
Name for the ATAES132A driver which will be used for binding.
|
|
|
|
config CRYPTO_ATAES132A_I2C_PORT_NAME
|
|
string "I2C master controller port name"
|
|
default "I2C_0"
|
|
help
|
|
Master I2C port name through which ATAES132A chip is accessed.
|
|
|
|
config CRYPTO_ATAES132A_I2C_ADDR
|
|
hex "ATAES132A I2C address"
|
|
default 0x50
|
|
help
|
|
ATAES132A chip's I2C address.
|
|
|
|
choice
|
|
prompt "ATAES132A I2C bus speed"
|
|
default CRYPTO_ATAES132A_I2C_SPEED_STANDARD
|
|
|
|
config CRYPTO_ATAES132A_I2C_SPEED_STANDARD
|
|
bool "Standard"
|
|
help
|
|
Standard bis speed of up to 100KHz.
|
|
|
|
config CRYPTO_ATAES132A_I2C_SPEED_FAST
|
|
bool "Fast"
|
|
help
|
|
Fast bus speed of up to 400KHz.
|
|
endchoice
|
|
|
|
endif # CRYPTO_ATAES132A
|