zephyr/drivers/sensor
Ulf Magnusson ec3eff57e0 Kconfig: Use the first default with a satisfied condition
Up until now, Zephyr has patched Kconfig to use the last 'default' with
a satisfied condition, instead of the first one. I'm not sure why the
patch was added (it predates Kconfiglib), but I suspect it's related to
Kconfig.defconfig files.

There are at least three problems with the patch:

  1. It's inconsistent with how Kconfig works in other projects, which
     might confuse newcomers.

  2. Due to oversights, earlier 'range' properties are still preferred,
     as well as earlier 'default' properties on choices.

     In addition to being inconsistent, this makes it impossible to
     override 'range' properties and choice 'default' properties if the
     base definition of the symbol/choice already has 'range'/'default'
     properties.

     I've seen errors caused by the inconsistency, and I suspect there
     are more.

  3. A fork of Kconfiglib that adds the patch needs to be maintained.

Get rid of the patch and go back to standard Kconfig behavior, as
follows:

  1. Include the Kconfig.defconfig files first instead of last in
     Kconfig.zephyr.

  2. Include boards/Kconfig and arch/<arch>/Kconfig first instead of
     last in arch/Kconfig.

  3. Include arch/<arch>/soc/*/Kconfig first instead of last in
     arch/<arch>/Kconfig.

  4. Swap a few other 'source's to preserve behavior for some scattered
     symbols with multiple definitions.

     Swap 'source's in some no-op cases too, where it might match the
     intent.

  5. Reverse the defaults on symbol definitions that have more than one
     default.

     Skip defaults that are mutually exclusive, e.g. where each default
     has an 'if <some board>' condition. They are already safe.

  6. Remove the prefer-later-defaults patch from Kconfiglib.

Testing was done with a Python script that lists all Kconfig
symbols/choices with multiple defaults, along with a whitelist of fixed
symbols. The script also verifies that there are no "unreachable"
defaults hidden by defaults without conditions

As an additional test, zephyr/.config was generated before and after the
change for several samples and checked to be identical (after sorting).

This commit includes some default-related cleanups as well:

  - Simplify some symbol definitions, e.g. where a default has 'if FOO'
    when the symbol already has 'depends on FOO'.

  - Remove some redundant 'default ""' for string symbols. This is the
    implicit default.

Piggyback fixes for swapped ranges on BT_L2CAP_RX_MTU and
BT_L2CAP_TX_MTU (caused by confusing inconsistency).

Piggyback some fixes for style nits too, e.g. unindented help texts.

Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
2018-08-10 12:38:28 -07:00
..
adt7420 drivers: sensors: adt7420: Add driver for ADT7420 Temperature Sensor 2018-07-12 13:03:24 -05:00
adxl362 drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
ak8975 drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
amg88xx drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
apds9960 drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
bma280 drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
bmc150_magn drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
bme280
bmg160 drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
bmi160 Kconfig: Use the first default with a satisfied condition 2018-08-10 12:38:28 -07:00
bmm150 drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
ccs811 drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
dht drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
fxas21002 drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
fxos8700 drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
hdc1008 drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
hmc5883l drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
hp206c drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
hts221 drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
isl29035 drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
lis2dh drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
lis3dh drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
lis3mdl drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
lps22hb drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
lps25hb drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
lsm6ds0 drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
lsm6dsl drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
lsm9ds0_gyro drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
lsm9ds0_mfd drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
max30101 drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
max44009 drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
mcp9808 drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
mma8451q drivers: sensor: Add support for MMA8451Q (3-axis accelerometer) 2018-07-31 09:07:54 -05:00
mpu6050 drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
nrf5 drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
pms7003 drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
sht3xd drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
sx9500 drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
th02 drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
tmp007 drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
tmp112 drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
vl53l0x drivers: sensor: Kconfig: Remove redundant 'default n' properties 2018-06-27 17:20:10 -05:00
CMakeLists.txt drivers: sensor: Add support for MMA8451Q (3-axis accelerometer) 2018-07-31 09:07:54 -05:00
Kconfig drivers: sensor: Add support for MMA8451Q (3-axis accelerometer) 2018-07-31 09:07:54 -05:00
sensor_handlers.c