Message ID | 20230803082125.521849-1-yangyingliang@huawei.com |
---|---|
State | Accepted |
Commit | e39d0fa7309bebdc19218276279b9f119d4e9f2b |
Headers | show |
Series | [-next] clk: qcom: lcc-msm8960: change pxo_parent_data to static | expand |
On Thu, 03 Aug 2023 16:21:25 +0800, Yang Yingliang wrote: > The pxo_parent_data inroduced in commit bac4675a4d1b ("clk: qcom: > drop lcc-mdm9615 in favour of lcc-msm8960") is only used in lcc-msm8960.c > now, change it to static. > > Applied, thanks! [1/1] clk: qcom: lcc-msm8960: change pxo_parent_data to static commit: e39d0fa7309bebdc19218276279b9f119d4e9f2b Best regards,
diff --git a/drivers/clk/qcom/lcc-msm8960.c b/drivers/clk/qcom/lcc-msm8960.c index c13a837a6d99..e725e7b9c456 100644 --- a/drivers/clk/qcom/lcc-msm8960.c +++ b/drivers/clk/qcom/lcc-msm8960.c @@ -22,7 +22,7 @@ #include "clk-regmap-divider.h" #include "clk-regmap-mux.h" -struct clk_parent_data pxo_parent_data = { +static struct clk_parent_data pxo_parent_data = { .fw_name = "pxo", .name = "pxo_board", };
The pxo_parent_data inroduced in commit bac4675a4d1b ("clk: qcom: drop lcc-mdm9615 in favour of lcc-msm8960") is only used in lcc-msm8960.c now, change it to static. Signed-off-by: Yang Yingliang <yangyingliang@huawei.com> --- drivers/clk/qcom/lcc-msm8960.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)