diff options
author | Marek Vasut <marex@denx.de> | 2015-12-04 01:21:41 (GMT) |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2015-12-17 20:54:40 (GMT) |
commit | 193979e2fe7cf75cb7434341562b1da7153750f7 (patch) | |
tree | f2897b0ae5bafb9c1230f4d5d3f91f1ee489965e /include/usb/s3c_udc.h | |
parent | 155e740f73b75c34a5f97f57a2d25d069c0f9375 (diff) | |
download | u-boot-fsl-qoriq-193979e2fe7cf75cb7434341562b1da7153750f7.tar.xz |
usb: s3c-otg: Zap useless externs
The extern statements are useless, remove them. Also remove the
extern ... controller, which is completely useless.
Signed-off-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'include/usb/s3c_udc.h')
-rw-r--r-- | include/usb/s3c_udc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/usb/s3c_udc.h b/include/usb/s3c_udc.h index 67c3e91..20af629 100644 --- a/include/usb/s3c_udc.h +++ b/include/usb/s3c_udc.h @@ -20,6 +20,6 @@ struct s3c_plat_otg_data { unsigned int usb_gusbcfg; }; -extern int s3c_udc_probe(struct s3c_plat_otg_data *pdata); +int s3c_udc_probe(struct s3c_plat_otg_data *pdata); #endif |