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:
parent
31507f74f1
commit
cb75d53231
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue