[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <1432117752-7074-1-git-send-email-bintian.wang@huawei.com>
Date: Wed, 20 May 2015 18:29:10 +0800
From: Bintian Wang <bintian.wang@...wei.com>
To: <mturquette@...aro.org>, <sboyd@...eaurora.org>,
<zhangfei.gao@...aro.org>, <xuwei5@...ilicon.com>,
<xuejiancheng@...wei.com>, <tomeu.vizoso@...labora.com>,
<sledge.yanwei@...wei.com>, <linux-clk@...r.kernel.org>,
<linux-kernel@...r.kernel.org>, <arnd@...db.de>,
<will.deacon@....com>, <robh+dt@...nel.org>, <khilman@...aro.org>,
<mark.rutland@....com>, <catalin.marinas@....com>,
<haojian.zhuang@...aro.org>,
<linux-arm-kernel@...ts.infradead.org>, <olof@...om.net>,
<yanhaifeng@...il.com>, <linux@....linux.org.uk>,
<guodong.xu@...aro.org>, <jorge.ramirez-ortiz@...aro.org>,
<tyler.baker@...aro.org>, <khilman@...nel.org>
CC: <xuyiping@...ilicon.com>, <wangbinghui@...ilicon.com>,
<zhenwei.wang@...ilicon.com>, <victor.lixin@...ilicon.com>,
<puck.chen@...ilicon.com>, <dan.zhao@...ilicon.com>,
<huxinwei@...wei.com>, <bintian.wang@...wei.com>,
<z.liuxinliang@...wei.com>, <heyunlei@...wei.com>,
<kong.kongxinwei@...ilicon.com>, <wangbintian@...il.com>,
<w.f@...wei.com>, <liguozhu@...ilicon.com>
Subject: [PATCH v7 5/7] clk: hisilicon: Remove __init for marking function prototypes
__init markings on function prototypes are useless, so remove
them.
Suggested-by: Stephen Boyd <sboyd@...eaurora.org>
Signed-off-by: Bintian Wang <bintian.wang@...wei.com>
---
drivers/clk/hisilicon/clk.h | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/drivers/clk/hisilicon/clk.h b/drivers/clk/hisilicon/clk.h
index 31083ff..6b6f994 100644
--- a/drivers/clk/hisilicon/clk.h
+++ b/drivers/clk/hisilicon/clk.h
@@ -95,17 +95,17 @@ struct clk *hisi_register_clkgate_sep(struct device *, const char *,
void __iomem *, u8,
u8, spinlock_t *);
-struct hisi_clock_data __init *hisi_clk_init(struct device_node *, int);
-void __init hisi_clk_register_fixed_rate(struct hisi_fixed_rate_clock *,
- int, struct hisi_clock_data *);
-void __init hisi_clk_register_fixed_factor(struct hisi_fixed_factor_clock *,
- int, struct hisi_clock_data *);
-void __init hisi_clk_register_mux(struct hisi_mux_clock *, int,
+struct hisi_clock_data *hisi_clk_init(struct device_node *, int);
+void hisi_clk_register_fixed_rate(struct hisi_fixed_rate_clock *,
+ int, struct hisi_clock_data *);
+void hisi_clk_register_fixed_factor(struct hisi_fixed_factor_clock *,
+ int, struct hisi_clock_data *);
+void hisi_clk_register_mux(struct hisi_mux_clock *, int,
struct hisi_clock_data *);
-void __init hisi_clk_register_divider(struct hisi_divider_clock *,
+void hisi_clk_register_divider(struct hisi_divider_clock *,
+ int, struct hisi_clock_data *);
+void hisi_clk_register_gate(struct hisi_gate_clock *,
+ int, struct hisi_clock_data *);
+void hisi_clk_register_gate_sep(struct hisi_gate_clock *,
int, struct hisi_clock_data *);
-void __init hisi_clk_register_gate(struct hisi_gate_clock *,
- int, struct hisi_clock_data *);
-void __init hisi_clk_register_gate_sep(struct hisi_gate_clock *,
- int, struct hisi_clock_data *);
#endif /* __HISI_CLK_H */
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists