[U-Boot] [PATCH] Remove inline qualifier from show_boot_progress()

2009-05-12 Thread Emil Medve
The 'inline' is conflicting with the semantic of 'weak' attribute and with the way the show_boot_progress() function is used. Also gcc 4.4 is complaining about it: main.c:51: error: inline function 'show_boot_progress' cannot be declared weak Signed-off-by: Emil Medve --- common/main.c |2

Re: [U-Boot] [PATCH] Remove inline qualifier from show_boot_progress()

2009-05-15 Thread Wolfgang Denk
Dear Emil Medve, In message <1242154112-26900-1-git-send-email-emilian.me...@freescale.com> you wrote: > The 'inline' is conflicting with the semantic of 'weak' attribute and with the > way the show_boot_progress() function is used. > > Also gcc 4.4 is complaining about it: > > main.c:51: error