diff mbox

[2/3] drivers / platform: Fix __init attribute location

Message ID 1376743346-9465-2-git-send-email-hanjun.guo@linaro.org
State Accepted
Commit a82579106c79484a5ea0c4c424c8860648c2e389
Headers show

Commit Message

Hanjun Guo Aug. 17, 2013, 12:42 p.m. UTC
__init belongs after the return type on functions, not before it.

Signed-off-by: Hanjun Guo <hanjun.guo@linaro.org>
---
 drivers/base/platform.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox

Patch

diff --git a/drivers/base/platform.c b/drivers/base/platform.c
index 3c3197a..9d538cf 100644
--- a/drivers/base/platform.c
+++ b/drivers/base/platform.c
@@ -1054,7 +1054,7 @@  void __init early_platform_driver_register_all(char *class_str)
  * @epdrv: early platform driver structure
  * @id: id to match against
  */
-static  __init struct platform_device *
+static struct platform_device * __init
 early_platform_match(struct early_platform_driver *epdrv, int id)
 {
 	struct platform_device *pd;
@@ -1072,7 +1072,7 @@  early_platform_match(struct early_platform_driver *epdrv, int id)
  * @epdrv: early platform driver structure
  * @id: return true if id or above exists
  */
-static  __init int early_platform_left(struct early_platform_driver *epdrv,
+static int __init early_platform_left(struct early_platform_driver *epdrv,
 				       int id)
 {
 	struct platform_device *pd;