The extern directive is unnecessary for function declaration and should be removed.
Signed-off-by: Weijie Gao <[email protected]> Reviewed-by: Simon Glass <[email protected]> --- v4: not changed v3: not changed v2: new --- include/ubi_uboot.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/ubi_uboot.h b/include/ubi_uboot.h index ea0db69c72a..05fb9634d81 100644 --- a/include/ubi_uboot.h +++ b/include/ubi_uboot.h @@ -44,12 +44,12 @@ #endif /* functions */ -extern int ubi_mtd_param_parse(const char *val, struct kernel_param *kp); -extern int ubi_init(void); -extern void ubi_exit(void); -extern int ubi_part(char *part_name, const char *vid_header_offset); -extern int ubi_volume_write(char *volume, void *buf, loff_t offset, size_t size); -extern int ubi_volume_read(char *volume, char *buf, loff_t offset, size_t size); +int ubi_mtd_param_parse(const char *val, struct kernel_param *kp); +int ubi_init(void); +void ubi_exit(void); +int ubi_part(char *part_name, const char *vid_header_offset); +int ubi_volume_write(char *volume, void *buf, loff_t offset, size_t size); +int ubi_volume_read(char *volume, char *buf, loff_t offset, size_t size); extern struct ubi_device *ubi_devices[]; int cmd_ubifs_mount(char *vol_name); -- 2.45.2

