diff options
author | Wei Yongjun <yongjun_wei@trendmicro.com.cn> | 2015-01-09 18:57:14 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-01-12 08:04:13 -0500 |
commit | a48f52e185f7f6da2c53f8dd4efda963c32b73f1 (patch) | |
tree | 90a0f6ea2e7894d38bf12c24113ab12d38315bd7 /drivers/coresight | |
parent | 52d6bbb9b06cac67ec3c016bc9758a1815022b2b (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.c | 12 |
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 | ||
255 | static int __init funnel_init(void) | 255 | module_amba_driver(funnel_driver); |
256 | { | ||
257 | return amba_driver_register(&funnel_driver); | ||
258 | } | ||
259 | module_init(funnel_init); | ||
260 | |||
261 | static void __exit funnel_exit(void) | ||
262 | { | ||
263 | amba_driver_unregister(&funnel_driver); | ||
264 | } | ||
265 | module_exit(funnel_exit); | ||
266 | 256 | ||
267 | MODULE_LICENSE("GPL v2"); | 257 | MODULE_LICENSE("GPL v2"); |
268 | MODULE_DESCRIPTION("CoreSight Funnel driver"); | 258 | MODULE_DESCRIPTION("CoreSight Funnel driver"); |