Commit d98d2ccb authored by Joe Perches's avatar Joe Perches Committed by Greg Kroah-Hartman
Browse files

staging: iio: Remove unnecessary externs



Using 'extern' is not necessary for function prototypes.

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Acked-by: default avatarLars-Peter Clausen <lars@metafoo.de>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5132fcd1
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -168,7 +168,7 @@ struct ade7854_state {

};

extern int ade7854_probe(struct iio_dev *indio_dev, struct device *dev);
extern int ade7854_remove(struct iio_dev *indio_dev);
int ade7854_probe(struct iio_dev *indio_dev, struct device *dev);
int ade7854_remove(struct iio_dev *indio_dev);

#endif