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: Bojan Prtvar <prtvar.b@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Bojan Prtvar 2013-09-02 13:56:19 +02:00 committed by Greg Kroah-Hartman
parent 31507f74f1
commit cb75d53231
1 changed files with 2 additions and 2 deletions

View File

@ -31,7 +31,7 @@ struct timed_output_dev {
int state;
};
extern int timed_output_dev_register(struct timed_output_dev *dev);
extern void timed_output_dev_unregister(struct timed_output_dev *dev);
int timed_output_dev_register(struct timed_output_dev *dev);
void timed_output_dev_unregister(struct timed_output_dev *dev);
#endif