• R/O
  • HTTP
  • SSH
  • HTTPS

コミット

タグ
未設定

よく使われているワード(クリックで追加)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

コミットメタ情報

リビジョン224f745247045262f9c4ca9e379be1002204e4ea (tree)
日時2019-01-10 01:03:29
作者Peng Fan <peng.fan@nxp....>
コミッターStefano Babic

ログメッセージ

clk: imx8: fix build warning

When build clk driver in spl, met the warning:
"
drivers/clk/imx/clk-imx8.c:21:25: warning: ‘imx8_clk_names’ defined but not used [-Wunused-variable]

static struct imx8_clks imx8_clk_names[] = {
~

"

Fix with wrapping the array with CONFIG_CMD_CLK.

Signed-off-by: Peng Fan <peng.fan@nxp.com>

変更サマリ

差分

--- a/drivers/clk/imx/clk-imx8.c
+++ b/drivers/clk/imx/clk-imx8.c
@@ -18,6 +18,7 @@ struct imx8_clks {
1818 const char *name;
1919 };
2020
21+#if CONFIG_IS_ENABLED(CMD_CLK)
2122 static struct imx8_clks imx8_clk_names[] = {
2223 { IMX8QXP_A35_DIV, "A35_DIV" },
2324 { IMX8QXP_I2C0_CLK, "I2C0" },
@@ -39,6 +40,7 @@ static struct imx8_clks imx8_clk_names[] = {
3940 { IMX8QXP_ENET1_REF_DIV, "ENET1_REF" },
4041 { IMX8QXP_ENET1_PTP_CLK, "ENET1_PTP" },
4142 };
43+#endif
4244
4345 static ulong imx8_clk_get_rate(struct clk *clk)
4446 {