]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
greybus: remove __init from .h files
authorGreg Kroah-Hartman <gregkh@google.com>
Thu, 11 Jun 2015 16:22:51 +0000 (09:22 -0700)
committerGreg Kroah-Hartman <gregkh@google.com>
Thu, 11 Jun 2015 16:35:00 +0000 (09:35 -0700)
__init does not belong in a .h file, as it does not do anything there,
so remove all instances of it.

Reviewed-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
drivers/staging/greybus/endo.h
drivers/staging/greybus/greybus.h
drivers/staging/greybus/operation.h

index ad5728c5b4a01185c8cc9e392087f5fa3f327a68..3622428552a3b18fc529e9f6d26d02740704971e 100644 (file)
@@ -49,7 +49,7 @@ struct gb_endo {
 /* Greybus "private" definitions */
 struct greybus_host_device;
 
-int gb_endo_init(void) __init;
+int gb_endo_init(void);
 void gb_endo_exit(void);
 
 struct gb_endo *gb_endo_create(struct greybus_host_device *hd,
index cf7c4419aad78a00ddc90840a04862f4bbc6536e..05eab4c5f9a0ddc8c448608aaf7415c3b1f958d7 100644 (file)
@@ -154,9 +154,9 @@ void greybus_deregister_driver(struct greybus_driver *driver);
 int greybus_disabled(void);
 
 int greybus_svc_in(struct greybus_host_device *hd, u8 *data, int length);
-int gb_ap_init(void) __init;
+int gb_ap_init(void);
 void gb_ap_exit(void);
-void gb_debugfs_init(void) __init;
+void gb_debugfs_init(void);
 void gb_debugfs_cleanup(void);
 struct dentry *gb_debugfs_get(void);
 
index 6eed6bc621486192e16699b1bc0dfcfff3da64d3..0199976c9b5fd1388fe88a98ba1e58d4172b1dee 100644 (file)
@@ -158,7 +158,7 @@ int gb_operation_sync(struct gb_connection *connection, int type,
                      void *request, int request_size,
                      void *response, int response_size);
 
-int gb_operation_init(void) __init;
+int gb_operation_init(void);
 void gb_operation_exit(void);
 
 #endif /* !__OPERATION_H */