Re: [U-Boot-Users] [MIPS] Introduce machine_restart

2008-03-24 Thread Shinya Kuribayashi
Shinya Kuribayashi wrote: > Wolfgang Denk wrote: >> In message <[EMAIL PROTECTED]@transmode.se> >> Joakim Tjernlund wrote: >>> I don't think it is good to use global fun ptrs. These are not >>> available until >>> relocated to RAM. >> Agreed! > > I got it. Thanks for your comments. > >> In messag

Re: [U-Boot-Users] [MIPS] Introduce machine_restart

2008-03-19 Thread Vlad Lungu
Wolfgang Denk wrote: > In message <[EMAIL PROTECTED]@transmode.se> > Joakim Tjernlund wrote: > >> I don't think it is good to use global fun ptrs. These are not >> available until >> relocated to RAM. >> > > Agreed! > > In message <[EMAIL PROTECTED]> > Jean-Christophe Plagniol-Villar wrote:

Re: [U-Boot-Users] [MIPS] Introduce machine_restart

2008-03-18 Thread Joakim Tjernlund
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: den 18 mars 2008 20:25 > To: Jean-Christophe PLAGNIOL-VILLARD > Cc: Shinya Kuribayashi; Joakim Tjernlund; u-boot-users@lists.sourceforge.net > Subject: Re: [U-Boot-Users] [MIPS] Introdu

Re: [U-Boot-Users] [MIPS] Introduce machine_restart

2008-03-18 Thread Shinya Kuribayashi
Wolfgang Denk wrote: > In message <[EMAIL PROTECTED]@transmode.se> > Joakim Tjernlund wrote: >> I don't think it is good to use global fun ptrs. These are not >> available until >> relocated to RAM. > > Agreed! I got it. Thanks for your comments. > In message <[EMAIL PROTECTED]> > Jean-Christoph

Re: [U-Boot-Users] [MIPS] Introduce machine_restart

2008-03-18 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]@transmode.se> Joakim Tjernlund wrote: > > I don't think it is good to use global fun ptrs. These are not > available until > relocated to RAM. Agreed! In message <[EMAIL PROTECTED]> Jean-Christophe Plagniol-Villar wrote: > > If possible I will prefer a weak function

Re: [U-Boot-Users] [MIPS] Introduce machine_restart

2008-03-18 Thread Jean-Christophe PLAGNIOL-VILLARD
On 02:55 Wed 19 Mar , Shinya Kuribayashi wrote: > Handles machine specific functions by using function pointers. > > Signed-off-by: Shinya Kuribayashi <[EMAIL PROTECTED]> If possible I will prefer a weak function Best Regards, J. --

Re: [U-Boot-Users] [MIPS] Introduce machine_restart

2008-03-18 Thread Joakim Tjernlund
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > On Behalf Of Shinya Kuribayashi > Sent: den 18 mars 2008 18:56 > To: u-boot-users@lists.sourceforge.net > Subject: [U-Boot-Users] [MIPS] Introduce machine_restart > > Handles machine spe

[U-Boot-Users] [MIPS] Introduce machine_restart

2008-03-18 Thread Shinya Kuribayashi
Handles machine specific functions by using function pointers. Signed-off-by: Shinya Kuribayashi <[EMAIL PROTECTED]> --- board/incaip/incaip.c |8 board/purple/purple.c | 10 ++ board/tb0229/tb0229.c | 11 ++- cpu/mips/cpu.c| 17