From mboxrd@z Thu Jan 1 00:00:00 1970 From: Scott Wood Date: Mon, 13 Apr 2015 15:32:38 -0500 Subject: [U-Boot] [RESEND PATCH v4 2/3] mtd, nand: move common functions from cmd_nand.c to common place In-Reply-To: <1428826337-31738-3-git-send-email-hs@denx.de> References: <1428826337-31738-1-git-send-email-hs@denx.de> <1428826337-31738-3-git-send-email-hs@denx.de> Message-ID: <1428957158.22867.635.camel@freescale.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Sun, 2015-04-12 at 10:12 +0200, Heiko Schocher wrote: > @@ -595,7 +491,10 @@ static int do_nand(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) > printf("\nNAND %s: ", cmd); > /* skip first two or three arguments, look for offset and size */ > if (arg_off_size(argc - o, argv + o, &dev, &off, &size, > - &maxsize) != 0) > + &maxsize, MTD_DEV_TYPE_NAND, nand_info[dev].size) != 0) Please keep the continuation line aligned with the arguments, not the function name (here and elsewhere). -Scott