mmc: mtk-sd: fix configuration option check
authorFabien Parent <fparent@baylibre.com>
Sun, 24 Mar 2019 15:46:34 +0000 (16:46 +0100)
committerTom Rini <trini@konsulko.com>
Tue, 23 Apr 2019 21:57:25 +0000 (17:57 -0400)
commitb5096f1b6d439d154f888febef56e7b3ecc4e37e
tree9674b6d5203c2e35b341f4314e568eff0d8cd38f
parenta93326681dd712f0c2f6883a6d30f8d765e1278b
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>
drivers/mmc/mtk-sd.c