public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Vagrant Cascadian <vagrant@debian.org>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v4 0/2] ARM: mx5: add support for USB armory board
Date: Wed, 08 Apr 2015 08:37:36 -0700	[thread overview]
Message-ID: <87fv8aaawv.fsf@aikidev.net> (raw)
In-Reply-To: <5524EC6E.5020804@denx.de>

On 2015-04-08, Stefano Babic wrote:
> On 01/04/2015 13:32, Stefano Babic wrote:
>> On 01/04/2015 04:46, Chris Kuethe wrote:
>>> Any chance of this being accepted into 2015.04?
>
> checpatch reports some issues by patch 2/2. Can you please fix them and
> resubmit ? Thanks !

Applying the patch below corrects most of the issues, but not all of the
reported issues:

Cleaned 2 patches
0 errors, 1 warnings, 0 checks for
0001-ARM-mx5-move-to-a-standard-arch-board-approach.patch:
warning: arch/arm/Kconfig,440: please write a paragraph that describes
the config symbol fully

0 errors, 1 warnings, 1 checks for
0002-ARM-mx5-add-support-for-USB-armory-board.patch:
check: board/inversepath/usbarmory/usbarmory.c,382: Alignment should
match open parenthesis
warning: include/configs/usbarmory.h,41: line over 80 characters

checkpatch.pl found 0 error(s), 2 warning(s), 1 checks(s)

diff --git a/board/inversepath/usbarmory/usbarmory.c b/board/inversepath/usbarmory/usbarmory.c
index 3e60a86..573d586 100644
--- a/board/inversepath/usbarmory/usbarmory.c
+++ b/board/inversepath/usbarmory/usbarmory.c
@@ -68,13 +68,13 @@ static void setup_iomux_sd(void)
 		NEW_PAD_CTRL(MX53_PAD_SD1_CMD__ESDHC1_CMD, SD_CMD_PAD_CTRL),
 		NEW_PAD_CTRL(MX53_PAD_SD1_CLK__ESDHC1_CLK, MX53_SDHC_PAD_CTRL),
 		NEW_PAD_CTRL(MX53_PAD_SD1_DATA0__ESDHC1_DAT0,
-			MX53_SDHC_PAD_CTRL),
+			     MX53_SDHC_PAD_CTRL),
 		NEW_PAD_CTRL(MX53_PAD_SD1_DATA1__ESDHC1_DAT1,
-			MX53_SDHC_PAD_CTRL),
+			     MX53_SDHC_PAD_CTRL),
 		NEW_PAD_CTRL(MX53_PAD_SD1_DATA2__ESDHC1_DAT2,
-			MX53_SDHC_PAD_CTRL),
+			     MX53_SDHC_PAD_CTRL),
 		NEW_PAD_CTRL(MX53_PAD_SD1_DATA3__ESDHC1_DAT3,
-			MX53_SDHC_PAD_CTRL),
+			     MX53_SDHC_PAD_CTRL),
 		MX53_PAD_EIM_DA13__GPIO3_13,
 	};
 
@@ -85,7 +85,7 @@ static void setup_iomux_led(void)
 {
 	static const iomux_v3_cfg_t pads[] = {
 		NEW_PAD_CTRL(MX53_PAD_DISP0_DAT6__GPIO4_27,
-			PAD_CTL_PUS_100K_DOWN),
+			     PAD_CTL_PUS_100K_DOWN),
 	};
 
 	imx_iomux_v3_setup_multiple_pads(pads, ARRAY_SIZE(pads));
@@ -107,9 +107,9 @@ static void setup_iomux_pinheader(void)
 		NEW_PAD_CTRL(MX53_PAD_CSI0_DAT8__GPIO5_26, PAD_CTRL_UP),
 		NEW_PAD_CTRL(MX53_PAD_CSI0_DAT9__GPIO5_27, PAD_CTRL_UP),
 		NEW_PAD_CTRL(MX53_PAD_CSI0_DAT10__UART1_TXD_MUX,
-			MX53_UART_PAD_CTRL),
+			     MX53_UART_PAD_CTRL),
 		NEW_PAD_CTRL(MX53_PAD_CSI0_DAT11__UART1_RXD_MUX,
-			MX53_UART_PAD_CTRL),
+			     MX53_UART_PAD_CTRL),
 		NEW_PAD_CTRL(MX53_PAD_CSI0_DAT12__GPIO5_30, PAD_CTRL_UP),
 	};
 
@@ -119,7 +119,6 @@ static void setup_iomux_pinheader(void)
 static void setup_iomux_unused_boot(void)
 {
 	static const iomux_v3_cfg_t pads[] = {
-
 		/* Pulled-up pads */
 		NEW_PAD_CTRL(MX53_PAD_EIM_A21__GPIO2_17, PAD_CTRL_UP),
 		NEW_PAD_CTRL(MX53_PAD_EIM_DA0__GPIO3_0, PAD_CTRL_UP),
@@ -155,7 +154,6 @@ static void setup_iomux_unused_nc(void)
 	   ROM is executed so we force all the not connected pins
 	   to a known state */
 	static const iomux_v3_cfg_t pads[] = {
-
 		/* CONTROL PINS block */
 		NEW_PAD_CTRL(MX53_PAD_GPIO_0__GPIO1_0, PAD_CTRL_UP),
 		NEW_PAD_CTRL(MX53_PAD_GPIO_1__GPIO1_1, PAD_CTRL_UP),


live well,
  vagrant
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 818 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150408/867c50be/attachment.sig>

  reply	other threads:[~2015-04-08 15:37 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-03-26 11:49 [U-Boot] [PATCH v4 0/2] ARM: mx5: add support for USB armory board andrej at inversepath.com
2015-03-26 11:49 ` [U-Boot] [PATCH v4 1/2] ARM: mx5: move to a standard arch/board approach andrej at inversepath.com
2015-03-26 21:45   ` Chris Kuethe
2015-03-26 11:49 ` [U-Boot] [PATCH v4 2/2] ARM: mx5: add support for USB armory board andrej at inversepath.com
2015-03-26 20:45   ` Vagrant Cascadian
2015-03-26 21:53 ` [U-Boot] [PATCH v4 0/2] " Chris Kuethe
2015-03-26 22:23   ` Andrej Rosano
2015-03-26 22:28     ` Chris Kuethe
2015-04-01  2:46       ` Chris Kuethe
2015-04-01 11:32         ` Stefano Babic
2015-04-08  8:53           ` Stefano Babic
2015-04-08 15:37             ` Vagrant Cascadian [this message]
2015-04-08 15:48               ` Stefano Babic
2015-04-08 17:00             ` Andrej Rosano
2015-04-09  8:29               ` Stefano Babic

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=87fv8aaawv.fsf@aikidev.net \
    --to=vagrant@debian.org \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox