From mboxrd@z Thu Jan 1 00:00:00 1970 From: Scott Wood Date: Mon, 29 Jul 2013 17:59:24 -0500 Subject: [U-Boot] [PATCH v7 03/11] nand: add Faraday FTNANDC021 NAND controller support In-Reply-To: <1375077113-27251-4-git-send-email-dantesu@gmail.com> (from dantesu@gmail.com on Mon Jul 29 00:51:45 2013) References: <1364540788-13943-1-git-send-email-dantesu@gmail.com> <1375077113-27251-4-git-send-email-dantesu@gmail.com> Message-ID: <1375138764.30721.62@snotra> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 07/29/2013 12:51:45 AM, Kuo-Jung Su wrote: > From: Kuo-Jung Su > > Faraday FTNANDC021 is an integrated NAND flash controller. > It use a build-in command table to abstract the underlying > NAND flash control logic. > > For example: > > Issuing a command 0x10 to FTNANDC021 would result in > a page write + a read status operation. > > Signed-off-by: Kuo-Jung Su > CC: Albert ARIBAUD > CC: Scott Wood > --- > Changes for v7: > - ftnandc021.[ch]: Update license to use SPDX identifiers. > - ftnandc021.c: put_unaligned() -> memcpy() > - ftnandc021.c: update ecc relatived function prototypes to > fix compile warnnings. [snip] > +#include > +#include > +#include > +#include > +#include > +#include asm/unaligned.h can come out now that you've switched to memcpy()... In any case: Acked-by: Scott Wood -Scott