Re: [U-Boot] [PATCH v2 1/4] USB: ULPI: switch argument type from u8 to unsigned

2011-12-16 Thread Remy Bohmer
Hi, 2011/12/16 Simon Glass s...@chromium.org: On Tue, Dec 13, 2011 at 10:16 PM, Igor Grinberg grinb...@compulab.co.il wrote: There is no benefit in using u8, so switch to unsigned to reduce the binary image size (by 20 bytes). Signed-off-by: Igor Grinberg grinb...@compulab.co.il Acked-by:

Re: [U-Boot] [PATCH v2 1/4] USB: ULPI: switch argument type from u8 to unsigned

2011-12-15 Thread Simon Glass
On Tue, Dec 13, 2011 at 10:16 PM, Igor Grinberg grinb...@compulab.co.il wrote: There is no benefit in using u8, so switch to unsigned to reduce the binary image size (by 20 bytes). Signed-off-by: Igor Grinberg grinb...@compulab.co.il Acked-by: Simon Glass s...@chromium.org Looks good thanks

[U-Boot] [PATCH v2 1/4] USB: ULPI: switch argument type from u8 to unsigned

2011-12-13 Thread Igor Grinberg
There is no benefit in using u8, so switch to unsigned to reduce the binary image size (by 20 bytes). Signed-off-by: Igor Grinberg grinb...@compulab.co.il Acked-by: Simon Glass s...@chromium.org --- v2: no functional changes - fix typos in the commit message and add Simon's ack.