staging: nvec: Remove unnecessary externs
authorJoe Perches <joe@perches.com>
Mon, 10 Aug 2015 21:51:25 +0000 (14:51 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 15 Aug 2015 01:51:56 +0000 (18:51 -0700)
Using 'extern' is not necessary for function prototypes.

Miscellanea:

o Reflow alignments

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/nvec/nvec.h

index e271375..2ec9de9 100644 (file)
@@ -165,19 +165,18 @@ struct nvec_chip {
        int state;
 };
 
-extern int nvec_write_async(struct nvec_chip *nvec, const unsigned char *data,
-                            short size);
+int nvec_write_async(struct nvec_chip *nvec, const unsigned char *data,
+                    short size);
 
-extern struct nvec_msg *nvec_write_sync(struct nvec_chip *nvec,
-                                       const unsigned char *data, short size);
+struct nvec_msg *nvec_write_sync(struct nvec_chip *nvec,
+                                const unsigned char *data, short size);
 
-extern int nvec_register_notifier(struct nvec_chip *nvec,
-                                 struct notifier_block *nb,
-                                 unsigned int events);
+int nvec_register_notifier(struct nvec_chip *nvec,
+                          struct notifier_block *nb,
+                          unsigned int events);
 
-extern int nvec_unregister_notifier(struct nvec_chip *dev,
-                                   struct notifier_block *nb);
+int nvec_unregister_notifier(struct nvec_chip *dev, struct notifier_block *nb);
 
-extern void nvec_msg_free(struct nvec_chip *nvec, struct nvec_msg *msg);
+void nvec_msg_free(struct nvec_chip *nvec, struct nvec_msg *msg);
 
 #endif