Re: [U-Boot] [PATCH RESEND 4/5] trats: new USB hardware init interface

2013-08-09 Thread Mateusz Zalega
On 08/09/13 11:30, Jaehoon Chung wrote: >> +int board_usb_init(enum board_usb_init_type what_to_init) >> { >> debug("USB_udc_probe\n"); >> s3c_udc_probe(&s5pc210_otg_data); >> +return 0; > Always return 0? >> } You're right, it could pass return value from s3c_udc_probe. Thanks,

Re: [U-Boot] [PATCH RESEND 4/5] trats: new USB hardware init interface

2013-08-09 Thread Jaehoon Chung
On 08/06/2013 07:50 PM, Mateusz Zalega wrote: > This commit changes name of an existing initialization function to > board_usb_init(), so that such functions could be reached by every > USB driver and command (ie. do_dfu()). > > Signed-off-by: Mateusz Zalega > --- > board/samsung/trats/trats.c |

[U-Boot] [PATCH RESEND 4/5] trats: new USB hardware init interface

2013-08-06 Thread Mateusz Zalega
This commit changes name of an existing initialization function to board_usb_init(), so that such functions could be reached by every USB driver and command (ie. do_dfu()). Signed-off-by: Mateusz Zalega --- board/samsung/trats/trats.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) dif