Re: [U-Boot] [PATCH] POST: Remove duplicated post_hotkey_pressed() functions

2009-12-02 Thread Wolfgang Denk
Dear Stefan Roese, In message <1256906335-6477-1-git-send-email...@denx.de> you wrote: > This patch introduces a weak default function for post_hotkey_pressed(), > returning 0, for boards without hotkey support. The long-running tests > won't be started on those boards. This default function was i

Re: [U-Boot] [PATCH] POST: Remove duplicated post_hotkey_pressed() functions

2009-11-25 Thread Stefan Roese
Hi Wolfgang, On Tuesday 24 November 2009 23:35:02 Wolfgang Denk wrote: > Hm... but the implementations were actually different. Some boards > > used ctrlc() so they would catch a (prebably previously pressed) ^C: > > --- a/board/amcc/katmai/katmai.c > > +++ b/board/amcc/katmai/katmai.c > > .. >

Re: [U-Boot] [PATCH] POST: Remove duplicated post_hotkey_pressed() functions

2009-11-24 Thread Wolfgang Denk
Dear Stefan Roese, In message <1256906335-6477-1-git-send-email...@denx.de> you wrote: > This patch introduces a weak default function for post_hotkey_pressed(), > returning 0, for boards without hotkey support. The long-running tests > won't be started on those boards. This default function was i

[U-Boot] [PATCH] POST: Remove duplicated post_hotkey_pressed() functions

2009-10-30 Thread Stefan Roese
This patch introduces a weak default function for post_hotkey_pressed(), returning 0, for boards without hotkey support. The long-running tests won't be started on those boards. This default function was implemented in many board directories. By implementing this weak default we can remove all thos