diff options
author | Vinod Koul <vkoul@kernel.org> | 2020-12-05 14:41:46 +0530 |
---|---|---|
committer | Vinod Koul <vkoul@kernel.org> | 2020-12-07 10:19:22 +0530 |
commit | 18b648322d44e8d8950de8aa31dba9bad0a33b89 (patch) | |
tree | fcc6bf27d119175075d9e3eb7afdb1856990b1cb /drivers/phy | |
parent | af89e575152a9b6d4a3e0e5e35bf6b7075905276 (diff) | |
download | linux-stable-18b648322d44e8d8950de8aa31dba9bad0a33b89.tar.gz linux-stable-18b648322d44e8d8950de8aa31dba9bad0a33b89.tar.bz2 linux-stable-18b648322d44e8d8950de8aa31dba9bad0a33b89.zip |
phy: mediatek: statify mtk_hdmi_phy_driver
mtk_hdmi_phy_driver is not declared as static, so statify it.
drivers/phy/mediatek/phy-mtk-hdmi.c:204:24: warning: symbol 'mtk_hdmi_phy_driver' was not declared. Should it be static?
Acked-by: Chun-Kuang Hu <chunkuang.hu@kernel.org>
Link: https://lore.kernel.org/r/20201205091146.3184305-1-vkoul@kernel.org
Signed-off-by: Vinod Koul <vkoul@kernel.org>
Diffstat (limited to 'drivers/phy')
-rw-r--r-- | drivers/phy/mediatek/phy-mtk-hdmi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/phy/mediatek/phy-mtk-hdmi.c b/drivers/phy/mediatek/phy-mtk-hdmi.c index 47c029d4b270..c5c61f5a9ea0 100644 --- a/drivers/phy/mediatek/phy-mtk-hdmi.c +++ b/drivers/phy/mediatek/phy-mtk-hdmi.c @@ -201,7 +201,7 @@ static const struct of_device_id mtk_hdmi_phy_match[] = { {}, }; -struct platform_driver mtk_hdmi_phy_driver = { +static struct platform_driver mtk_hdmi_phy_driver = { .probe = mtk_hdmi_phy_probe, .driver = { .name = "mediatek-hdmi-phy", |