Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c0b37b70 authored by Ashley Smith's avatar Ashley Smith Committed by Peter P Waskiewicz Jr
Browse files

staging: lustre: Remove extern keyword from function prototypes



A function prototype is always a declaration and thus has "extern" prepended by default.

Signed-off-by: default avatarAshley Smith <ashley@eclipso.ch>
Acked-by: default avatarPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Signed-off-by: default avatarPeter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
parent f137058f
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -211,10 +211,10 @@ static inline int libcfs_ioctl_is_invalid(struct libcfs_ioctl_data *data)
}


extern int libcfs_register_ioctl(struct libcfs_ioctl_handler *hand);
extern int libcfs_deregister_ioctl(struct libcfs_ioctl_handler *hand);
extern int libcfs_ioctl_getdata(char *buf, char *end, void *arg);
extern int libcfs_ioctl_popdata(void *arg, void *buf, int size);
int libcfs_register_ioctl(struct libcfs_ioctl_handler *hand);
int libcfs_deregister_ioctl(struct libcfs_ioctl_handler *hand);
int libcfs_ioctl_getdata(char *buf, char *end, void *arg);
int libcfs_ioctl_popdata(void *arg, void *buf, int size);


#endif /* __LIBCFS_IOCTL_H__ */