commit | aa3c9bb658d5686a95353eab7af5de114ab957b4 | [log] [tgz] |
---|---|---|
author | Samuel Dionne-Riel <samuel@dionne-riel.com> | Tue Jul 18 14:27:36 2023 +0530 |
committer | Tom Rini <trini@konsulko.com> | Fri Jul 21 15:32:12 2023 -0400 |
tree | 56297e86b3ac1b199488643da8322f2f623159a2 | |
parent | a9b12044d1941694bd3d5ed24b7369959ab1e9e0 [diff] |
common: Kconfig: Fix CMD_BMP/BMP dependency Using `default y` will not select BMP when CMD_BMP has been enabled, if it was already configured. By using `select`, if `CMD_BMP` is turned on, it will force the presence of `BMP`. Fixes: 072b0e16c4 ("common: Kconfig: Add BMP configs") Signed-off-by: Samuel Dionne-Riel <samuel@dionne-riel.com> Signed-off-by: Nikhil M Jain <n-jain1@ti.com>