From mboxrd@z Thu Jan 1 00:00:00 1970 From: Peter Tyser Date: Wed, 15 Jul 2009 09:51:27 -0500 Subject: [U-Boot] Support for Calao USB A9263 board based on AT91SAM9263 CPU In-Reply-To: <20090715163557.08b58415@surf> References: <20090701140758.28d7438a@surf> <20090708214253.GD26464@game.jcrosoft.org> <20090715163557.08b58415@surf> Message-ID: <1247669487.16908.52.camel@localhost.localdomain> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Wed, 2009-07-15 at 16:35 +0200, Thomas Petazzoni wrote: > Support for the Calao USB A9263 board You can get rid of the line above. It is nearly identical to the patch subject and doesn't add any useful info. > > MAKEALL | 1 > Makefile | 3 You should add an entry to MAINTAINERS > +/* LED */ > +#define CONFIG_AT91_LED > +#define CONFIG_RED_LED AT91_PIN_PB7 /* this is the power led */ > +#define CONFIG_GREEN_LED AT91_PIN_PB8 /* this is the user1 led */ > +#define CONFIG_YELLOW_LED AT91_PIN_PC29 /* this is the user2 led */ Funky indentation. > +#define ROUND(A, B) (((A) + (B)) & ~((B) - 1)) I'd try and use the round functions already in include/common.h if possible. Maybe its not possible if this file is included prior to common.h though, I'm not sure. Best, Peter