From 3d0421e0ab5315051b949ea70dee37c15e860706 Mon Sep 17 00:00:00 2001 From: Greg Kroah-Hartman Date: Thu, 11 Jun 2015 09:22:51 -0700 Subject: [PATCH] greybus: remove __init from .h files __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 Signed-off-by: Greg Kroah-Hartman --- drivers/staging/greybus/endo.h | 2 +- drivers/staging/greybus/greybus.h | 4 ++-- drivers/staging/greybus/operation.h | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/staging/greybus/endo.h b/drivers/staging/greybus/endo.h index ad5728c5..3622428 100644 --- a/drivers/staging/greybus/endo.h +++ b/drivers/staging/greybus/endo.h @@ -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, diff --git a/drivers/staging/greybus/greybus.h b/drivers/staging/greybus/greybus.h index cf7c441..05eab4c 100644 --- a/drivers/staging/greybus/greybus.h +++ b/drivers/staging/greybus/greybus.h @@ -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); diff --git a/drivers/staging/greybus/operation.h b/drivers/staging/greybus/operation.h index 6eed6bc..0199976 100644 --- a/drivers/staging/greybus/operation.h +++ b/drivers/staging/greybus/operation.h @@ -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 */ -- 2.7.4