commit | 8ed608a1e76f632dea37b9d74c4e135ededdd05c | [log] [tgz] |
---|---|---|
author | Fabien Parent <fparent@baylibre.com> | Sun Mar 24 16:46:34 2019 +0100 |
committer | Tom Rini <trini@konsulko.com> | Tue Apr 23 17:57:25 2019 -0400 |
tree | 9674b6d5203c2e35b341f4314e568eff0d8cd38f | |
parent | 1d520a4892d514e091d0c30c0942205ae5c5f170 [diff] |
mmc: mtk-sd: fix configuration option check We either need to use IS_ENABLED(CONFIG_FOO) or CONFIG_IS_ENABLED(FOO). IS_ENABLE(FOO) will always return false. This commit fixes the comparison by using the CONFIG_IS_ENABLED(FOO) syntax. Signed-off-by: Fabien Parent <fparent@baylibre.com>