You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to set CONFIG_I2C=n in the application's prj.conf results in the following:
warning: HAS_I2C_DW (defined at drivers/i2c/Kconfig.dw:6) has direct dependencies I2C with value n, but is currently being y-selected by the following symbols:
- SOC_APOLLO_LAKE (defined at soc/x86/apollo_lake/Kconfig.soc:4), with value y, direct dependencies <choice> (value: y), and select condition <choice> (value: y)
error: Aborting due to Kconfig warnings
The text was updated successfully, but these errors were encountered:
Make it possible for an application to set CONFIG_I2C=n if it wants.
The unconditional select was making this impossible due to resulting
unmet dependencies.
This is also in line with what some other SoC definitions do with I2C.
Fixes#25204
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
hakehuang
pushed a commit
to hakehuang/zephyr
that referenced
this issue
Jun 20, 2020
Make it possible for an application to set CONFIG_I2C=n if it wants.
The unconditional select was making this impossible due to resulting
unmet dependencies.
This is also in line with what some other SoC definitions do with I2C.
Fixeszephyrproject-rtos#25204
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Trying to set
CONFIG_I2C=n
in the application'sprj.conf
results in the following:The text was updated successfully, but these errors were encountered: