aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/coresight
diff options
context:
space:
mode:
authorWei Yongjun <yongjun_wei@trendmicro.com.cn>2015-01-09 18:57:14 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2015-01-12 08:04:13 -0500
commita48f52e185f7f6da2c53f8dd4efda963c32b73f1 (patch)
tree90a0f6ea2e7894d38bf12c24113ab12d38315bd7 /drivers/coresight
parent52d6bbb9b06cac67ec3c016bc9758a1815022b2b (diff)
coresight-funnel: use module_amba_driver to simplify the code
module_amba_driver() makes the code simpler by eliminating boilerplate code. Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/coresight')
-rw-r--r--drivers/coresight/coresight-funnel.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/drivers/coresight/coresight-funnel.c b/drivers/coresight/coresight-funnel.c
index 2108edffe1f4..3db36f70b666 100644
--- a/drivers/coresight/coresight-funnel.c
+++ b/drivers/coresight/coresight-funnel.c
@@ -252,17 +252,7 @@ static struct amba_driver funnel_driver = {
252 .id_table = funnel_ids, 252 .id_table = funnel_ids,
253}; 253};
254 254
255static int __init funnel_init(void) 255module_amba_driver(funnel_driver);
256{
257 return amba_driver_register(&funnel_driver);
258}
259module_init(funnel_init);
260
261static void __exit funnel_exit(void)
262{
263 amba_driver_unregister(&funnel_driver);
264}
265module_exit(funnel_exit);
266 256
267MODULE_LICENSE("GPL v2"); 257MODULE_LICENSE("GPL v2");
268MODULE_DESCRIPTION("CoreSight Funnel driver"); 258MODULE_DESCRIPTION("CoreSight Funnel driver");