public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: "Álvaro Fernández Rojas" <noltari@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v4 01/14] cmd: cpu: fix NULL cpu feature prints
Date: Thu, 20 Apr 2017 21:12:12 +0200	[thread overview]
Message-ID: <1492715545-3010-2-git-send-email-noltari@gmail.com> (raw)
In-Reply-To: <1492715545-3010-1-git-send-email-noltari@gmail.com>

Commit 740d5d3 added two new features but only one feature name,
which results in NULL prints when device_id feature is selected.

Before:
	HG556a # cpu detail
	 -1: cpu at 0	BCM6358A1
		ID = 0, freq = 300 MHz: L1 cache, MMU, NULL
		Device ID 0x2a010
	 -1: cpu at 1	BCM6358A1
		ID = 1, freq = 300 MHz: L1 cache, MMU, NULL
		Device ID 0x2a010
After:
	HG556a # cpu detail
	 -1: cpu at 0	BCM6358A1
		ID = 0, freq = 300 MHz: L1 cache, MMU, Device ID
		Device ID 0x2a010
	 -1: cpu at 1	BCM6358A1
		ID = 1, freq = 300 MHz: L1 cache, MMU, Device ID
		Device ID 0x2a010

Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
---
 v3: No changes.
 v2: Introduce changes suggested by Daniel Schwierzeck:
  - Add the missing name instead of checking for null names.

 cmd/cpu.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/cmd/cpu.c b/cmd/cpu.c
index bc4dc5c..adfd54a 100644
--- a/cmd/cpu.c
+++ b/cmd/cpu.c
@@ -15,6 +15,7 @@ static const char *cpu_feature_name[CPU_FEAT_COUNT] = {
 	"L1 cache",
 	"MMU",
 	"Microcode",
+	"Device ID",
 };
 
 static int print_cpu_list(bool detail)
-- 
2.1.4

  reply	other threads:[~2017-04-20 19:12 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-20 19:12 [U-Boot] [PATCH v4 00/14] Add support for Broadcom MIPS SoCs Álvaro Fernández Rojas
2017-04-20 19:12 ` Álvaro Fernández Rojas [this message]
2017-04-20 19:12 ` [U-Boot] [PATCH v4 02/14] sysreset: add syscon-reboot driver Álvaro Fernández Rojas
2017-04-20 19:12 ` [U-Boot] [PATCH v4 03/14] MIPS: allow using generic sysreset drivers Álvaro Fernández Rojas
2017-04-20 19:12 ` [U-Boot] [PATCH v4 04/14] serial: add serial driver for BCM6345 Álvaro Fernández Rojas
2017-04-20 19:12 ` [U-Boot] [PATCH v4 05/14] cmd: cpu: refactor to ensure devices are probed and improve code style Álvaro Fernández Rojas
2017-04-20 19:12 ` [U-Boot] [PATCH v4 06/14] cpu: add CPU driver for Broadcom MIPS SoCs Álvaro Fernández Rojas
2017-04-20 19:12 ` [U-Boot] [PATCH v4 07/14] ram: add RAM " Álvaro Fernández Rojas
2017-04-20 19:12 ` [U-Boot] [PATCH v4 08/14] MIPS: add initial infrastructure " Álvaro Fernández Rojas
2017-04-20 19:12 ` [U-Boot] [PATCH v4 09/14] MIPS: add support for Broadcom MIPS BCM6358 SoC family Álvaro Fernández Rojas
2017-04-20 19:12 ` [U-Boot] [PATCH v4 10/14] MIPS: add BMIPS Huawei HG556a board Álvaro Fernández Rojas
2017-04-20 19:12 ` [U-Boot] [PATCH v4 11/14] MIPS: add support for Broadcom MIPS BCM6328 SoC family Álvaro Fernández Rojas
2017-04-20 19:12 ` [U-Boot] [PATCH v4 12/14] MIPS: add BMIPS Comtrend AR-5387un board Álvaro Fernández Rojas
2017-04-20 19:12 ` [U-Boot] [PATCH v4 13/14] MIPS: add support for Broadcom MIPS BCM63268 SoC family Álvaro Fernández Rojas
2017-04-20 19:12 ` [U-Boot] [PATCH v4 14/14] MIPS: add BMIPS Comtrend VR-3032u board Álvaro Fernández Rojas

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=1492715545-3010-2-git-send-email-noltari@gmail.com \
    --to=noltari@gmail.com \
    --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