1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 05:32:45 +01:00

boards/common/silabs: fix dependencies

The module silabs_pic depends on the feature periph_i2c. However, the
dependency resolution just selected the module implementing that
feature which bypasses feature checks.
This commit is contained in:
Marian Buschsieweke 2021-11-02 11:03:42 +01:00
parent 1ef44844e0
commit 9893efd96f
No known key found for this signature in database
GPG Key ID: CB8E3238CE715A94

View File

@ -1,3 +1,3 @@
ifneq (,$(filter silabs_pic,$(USEMODULE)))
USEMODULE += periph_i2c
FEATURES_REQUIRED += periph_i2c
endif