Commit cb75d532 authored by Bojan Prtvar's avatar Bojan Prtvar Committed by Greg Kroah-Hartman

Staging: android: Remove extern from function prototypes in .h files

checkpatch.pl complains that extern prototypes should be avoided in .h files
Signed-off-by: default avatarBojan Prtvar <prtvar.b@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 31507f74
...@@ -31,7 +31,7 @@ struct timed_output_dev { ...@@ -31,7 +31,7 @@ struct timed_output_dev {
int state; int state;
}; };
extern int timed_output_dev_register(struct timed_output_dev *dev); int timed_output_dev_register(struct timed_output_dev *dev);
extern void timed_output_dev_unregister(struct timed_output_dev *dev); void timed_output_dev_unregister(struct timed_output_dev *dev);
#endif #endif
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment