From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Date: Wed, 28 Jan 2015 09:39:50 +0000 Subject: [U-Boot] [PATCH 1/2] sunxi: rsb: Add sun9i (A80 support) In-Reply-To: <54C8AB20.6000909@redhat.com> References: <1422354468-11436-1-git-send-email-hdegoede@redhat.com> <1422436686.29309.33.camel@hellion.org.uk> <54C8AB20.6000909@redhat.com> Message-ID: <1422437990.29309.42.camel@hellion.org.uk> 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, 2015-01-28 at 10:25 +0100, Hans de Goede wrote: > Hi, > > On 28-01-15 10:18, Ian Campbell wrote: > > On Tue, 2015-01-27 at 11:27 +0100, Hans de Goede wrote: > >> Add support for the A80 to the rsb code. > >> > >> Signed-off-by: Hans de Goede > > > >> @@ -129,6 +133,7 @@ enum sunxi_gpio_number { > >> #define SUNXI_GPI(_nr) (SUNXI_GPIO_I_START + (_nr)) > >> #define SUNXI_GPL(_nr) (SUNXI_GPIO_L_START + (_nr)) > >> #define SUNXI_GPM(_nr) (SUNXI_GPIO_M_START + (_nr)) > >> +#define SUNXI_GPN(_nr) (SUNXI_GPIO_L_START + (_nr)) > > ^ N vs ^ L > > > > Is this correct or a cut-n-paste-o? > > That is a cut-n-paste-o should be N_START obviously, > will do a v2. Thought so ;-) With the obvious s/L/N/ change you can immediately add: Acked-by: Ian Campbell > I guess the rsb did work because allwinner's boot0 already sets > up the right muxing. Likely. Ian.