From: Minkyu Kang Date: Wed, 9 Dec 2009 04:29:30 +0000 (+0900) Subject: s5pc110: usbd: code clean X-Git-Tag: CES1223_2~49 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b4c902035f338de36abd8167f4566351b7e73b52;p=kernel%2Fu-boot.git s5pc110: usbd: code clean Signed-off-by: Minkyu Kang --- diff --git a/cpu/arm_cortexa8/s5pc1xx/usb_downloader.c b/cpu/arm_cortexa8/s5pc1xx/usb_downloader.c index 1975469..e4309d4 100644 --- a/cpu/arm_cortexa8/s5pc1xx/usb_downloader.c +++ b/cpu/arm_cortexa8/s5pc1xx/usb_downloader.c @@ -32,8 +32,6 @@ static long tx_len = 4; static char rx_data[2048]; static long rx_len = 64; -struct usbd_ops *usbd_set_interface(struct usbd_ops *); - extern int s5p_receive_done; extern int s5p_usb_connected; extern otg_dev_t otg; @@ -98,7 +96,7 @@ static void usb_init(void) #endif } -void usb_stop(void) +static void usb_stop(void) { s5p_usb_stop(); #ifdef CONFIG_S5PC1XXFB @@ -187,4 +185,3 @@ struct usbd_ops *usbd_set_interface(struct usbd_ops *usbd) return usbd; } -