Commit 7f4bc2e8 authored by Wei Yongjun's avatar Wei Yongjun Committed by Ulf Hansson

mmc: mediatek: make function msdc_cqe_disable() static

The sparse tool complains as follows:

drivers/mmc/host/mtk-sd.c:2269:6: warning:
 symbol 'msdc_cqe_disable' was not declared. Should it be static?

This function is not used outside of mtk-sd.c, so this commit
marks it static.

Fixes: 88bd652b ("mmc: mediatek: command queue support")
Reported-by: default avatarHulk Robot <hulkci@huawei.com>
Signed-off-by: default avatarWei Yongjun <weiyongjun1@huawei.com>
Acked-by: default avatarChun-Hung Wu <chun-hung.wu@mediatek.com>
Link: https://lore.kernel.org/r/20200727171129.2945-1-weiyongjun1@huawei.comSigned-off-by: default avatarUlf Hansson <ulf.hansson@linaro.org>
parent 804f1786
......@@ -2266,7 +2266,7 @@ static void msdc_cqe_enable(struct mmc_host *mmc)
msdc_set_timeout(host, 1000000000ULL, 0);
}
void msdc_cqe_disable(struct mmc_host *mmc, bool recovery)
static void msdc_cqe_disable(struct mmc_host *mmc, bool recovery)
{
struct msdc_host *host = mmc_priv(mmc);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment