diff options
author | Marek Vasut | 2015-12-04 02:21:41 +0100 |
---|---|---|
committer | Marek Vasut | 2015-12-17 21:54:40 +0100 |
commit | 193979e2fe7cf75cb7434341562b1da7153750f7 (patch) | |
tree | f2897b0ae5bafb9c1230f4d5d3f91f1ee489965e /include/usb | |
parent | 155e740f73b75c34a5f97f57a2d25d069c0f9375 (diff) |
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')
-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 67c3e9112dd..20af6299290 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 |