Re: [U-Boot] [PATCH] Fix the function conflict in x86emu when DEBUG is on

2008-10-16 Thread Wolfgang Denk
Dear Jason Jin, In message <[EMAIL PROTECTED]> you wrote: > The function parse_line() in common/main.c was exposed globally by commit > 6636b62a6efc7f14e6e788788631ae7a7fca4537, Result in conflict with the same > name funciton in drivers/bios_emulator/x86emu/debug.c when define the DEBUG. > This p

[U-Boot] [PATCH] Fix the function conflict in x86emu when DEBUG is on

2008-10-14 Thread Jason Jin
The function parse_line() in common/main.c was exposed globally by commit 6636b62a6efc7f14e6e788788631ae7a7fca4537, Result in conflict with the same name funciton in drivers/bios_emulator/x86emu/debug.c when define the DEBUG. This patch fix this by renaming the function in the debug.c file. Signed