提交 c82d48da 编写于 作者: S Souptick Joarder 提交者: Zheng Zengkai

remoteproc/mediatek: Fix kernel test robot warning

stable inclusion
from stable-5.10.21
commit ba1230b49acbf01a47baa804eb8df7c547cbdcf8
bugzilla: 50609

--------------------------------

commit cca21000 upstream.

Kernel test robot throws below warning ->

>> drivers/remoteproc/mtk_scp.c:755:37: warning: unused variable
>> 'mt8183_of_data' [-Wunused-const-variable]
   static const struct mtk_scp_of_data mt8183_of_data = {
                                       ^
>> drivers/remoteproc/mtk_scp.c:765:37: warning: unused variable
>> 'mt8192_of_data' [-Wunused-const-variable]
   static const struct mtk_scp_of_data mt8192_of_data = {
                                       ^
As suggested by Bjorn, there's no harm in just dropping the
of_match_ptr() wrapping of mtk_scp_of_match in the definition of
mtk_scp_driver and we avoid this whole problem.
Reported-by: Nkernel test robot <lkp@intel.com>
Suggested-by: NBjorn Andersson <bjorn.andersson@linaro.org>
Signed-off-by: NSouptick Joarder <jrdr.linux@gmail.com>
Link: https://lore.kernel.org/r/1606513855-21130-1-git-send-email-jrdr.linux@gmail.comSigned-off-by: NBjorn Andersson <bjorn.andersson@linaro.org>
Signed-off-by: NGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: NChen Jun <chenjun102@huawei.com>
Signed-off-by: NZheng Zengkai <zhengzengkai@huawei.com>
上级 291d095e
...@@ -775,21 +775,19 @@ static const struct mtk_scp_of_data mt8192_of_data = { ...@@ -775,21 +775,19 @@ static const struct mtk_scp_of_data mt8192_of_data = {
.host_to_scp_int_bit = MT8192_HOST_IPC_INT_BIT, .host_to_scp_int_bit = MT8192_HOST_IPC_INT_BIT,
}; };
#if defined(CONFIG_OF)
static const struct of_device_id mtk_scp_of_match[] = { static const struct of_device_id mtk_scp_of_match[] = {
{ .compatible = "mediatek,mt8183-scp", .data = &mt8183_of_data }, { .compatible = "mediatek,mt8183-scp", .data = &mt8183_of_data },
{ .compatible = "mediatek,mt8192-scp", .data = &mt8192_of_data }, { .compatible = "mediatek,mt8192-scp", .data = &mt8192_of_data },
{}, {},
}; };
MODULE_DEVICE_TABLE(of, mtk_scp_of_match); MODULE_DEVICE_TABLE(of, mtk_scp_of_match);
#endif
static struct platform_driver mtk_scp_driver = { static struct platform_driver mtk_scp_driver = {
.probe = scp_probe, .probe = scp_probe,
.remove = scp_remove, .remove = scp_remove,
.driver = { .driver = {
.name = "mtk-scp", .name = "mtk-scp",
.of_match_table = of_match_ptr(mtk_scp_of_match), .of_match_table = mtk_scp_of_match,
}, },
}; };
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册