From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Roese Date: Fri, 31 Aug 2012 09:02:20 +0200 Subject: [U-Boot] [PATCHv1] ARM: Add Altera SOCFPGA Cyclone5 In-Reply-To: <20120830204211.GA6356@elf.ucw.cz> References: <20120825120537.GA29569@elf.ucw.cz> <503B98ED.3090407@ti.com> <20120829134154.GA13606@elf.ucw.cz> <20120829182645.GB3450@bill-the-cat> <20120829232153.GA23417@elf.ucw.cz> <503EAD32.90806@ti.com> <20120830171842.GD5980@elf.ucw.cz> <503FA436.7090201@ti.com> <20120830180532.GA29900@elf.ucw.cz> <503FB15B.5040507@ti.com> <20120830204211.GA6356@elf.ucw.cz> Message-ID: <5040617C.1010601@denx.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 08/30/2012 10:42 PM, Pavel Machek wrote: > +++ b/common/spl/spl.c > @@ -115,6 +115,22 @@ static void __noreturn jump_to_image_no_args(void) > image_entry((u32 *)boot_params_ptr_addr); > } > > +#ifdef CONFIG_SPL_RAM_DEVICE > +static void spl_ram_load_image(void) > +{ > + const struct image_header *header; > + > + /* get the header */ > + /* it will point to a address defined by handoff which > + will tell where the image located inside the flash. For now, > + it will temporary fixed to address pointed by U-Boot */ Please use the proper multi-line comment style: /* * ... */ Thanks, Stefan