Re: [PATCH -next] soc: mediatek: Make symbol 'mtk_mutex_driver' static

2021-04-01 Thread Matthias Brugger
On 10/02/2021 08:56, Wei Yongjun wrote: > The sparse tool complains as follows: > > drivers/soc/mediatek/mtk-mutex.c:464:24: warning: > symbol 'mtk_mutex_driver' was not declared. Should it be static? > > This symbol is not used outside of mtk-mutex.c, so this > commit marks it static. > >

Re: [PATCH -next] soc: mediatek: Make symbol 'mtk_mutex_driver' static

2021-03-17 Thread Chun-Kuang Hu
Hi, Yongjun: Wei Yongjun 於 2021年2月10日 週三 下午3:49寫道: > > The sparse tool complains as follows: > > drivers/soc/mediatek/mtk-mutex.c:464:24: warning: > symbol 'mtk_mutex_driver' was not declared. Should it be static? > > This symbol is not used outside of mtk-mutex.c, so this > commit marks it

[PATCH -next] soc: mediatek: Make symbol 'mtk_mutex_driver' static

2021-02-09 Thread Wei Yongjun
The sparse tool complains as follows: drivers/soc/mediatek/mtk-mutex.c:464:24: warning: symbol 'mtk_mutex_driver' was not declared. Should it be static? This symbol is not used outside of mtk-mutex.c, so this commit marks it static. Reported-by: Hulk Robot Signed-off-by: Wei Yongjun ---