Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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: Ashley Smith <ashley@eclipso.ch>
Acked-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Signed-off-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>

authored by

Ashley Smith and committed by
Peter P Waskiewicz Jr
c0b37b70 f137058f

+4 -4
+4 -4
drivers/staging/lustre/include/linux/libcfs/libcfs_ioctl.h
··· 211 211 } 212 212 213 213 214 - extern int libcfs_register_ioctl(struct libcfs_ioctl_handler *hand); 215 - extern int libcfs_deregister_ioctl(struct libcfs_ioctl_handler *hand); 216 - extern int libcfs_ioctl_getdata(char *buf, char *end, void *arg); 217 - extern int libcfs_ioctl_popdata(void *arg, void *buf, int size); 214 + int libcfs_register_ioctl(struct libcfs_ioctl_handler *hand); 215 + int libcfs_deregister_ioctl(struct libcfs_ioctl_handler *hand); 216 + int libcfs_ioctl_getdata(char *buf, char *end, void *arg); 217 + int libcfs_ioctl_popdata(void *arg, void *buf, int size); 218 218 219 219 220 220 #endif /* __LIBCFS_IOCTL_H__ */