All of lore.kernel.org
 help / color / mirror / Atom feed
From: Wasim Khan <wasim.khan@nxp.com>
To: u-boot@lists.denx.de
Subject: [PATCH v2 03/12] pci: ls_pcie_g4: Print pcie controller number starting from 1
Date: Mon, 28 Sep 2020 16:26:05 +0530	[thread overview]
Message-ID: <1601290574-20151-4-git-send-email-wasim.khan@nxp.com> (raw)
In-Reply-To: <1601290574-20151-1-git-send-email-wasim.khan@nxp.com>

Print pcie controller number starting from 1

Signed-off-by: Wasim Khan <wasim.khan@nxp.com>
---
Changes in V2:
- No Change

Changes in V3:
- No Change

 drivers/pci/pcie_layerscape_gen4.c | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/drivers/pci/pcie_layerscape_gen4.c b/drivers/pci/pcie_layerscape_gen4.c
index 428bfca..0226bde 100644
--- a/drivers/pci/pcie_layerscape_gen4.c
+++ b/drivers/pci/pcie_layerscape_gen4.c
@@ -1,6 +1,6 @@
 // SPDX-License-Identifier: GPL-2.0+ OR X11
 /*
- * Copyright 2018-2019 NXP
+ * Copyright 2018-2020 NXP
  *
  * PCIe Gen4 driver for NXP Layerscape SoCs
  * Author: Hou Zhiqiang <Minder.Hou@gmail.com>
@@ -472,7 +472,8 @@ static int ls_pcie_g4_probe(struct udevice *dev)
 
 	pcie->enabled = is_serdes_configured(PCIE_SRDS_PRTCL(pcie->idx));
 	if (!pcie->enabled) {
-		printf("PCIe%d: %s disabled\n", pcie->idx, dev->name);
+		printf("PCIe%d: %s disabled\n", PCIE_SRDS_PRTCL(pcie->idx),
+		       dev->name);
 		return 0;
 	}
 
@@ -522,10 +523,12 @@ static int ls_pcie_g4_probe(struct udevice *dev)
 	pcie->mode = readb(pcie->ccsr + PCI_HEADER_TYPE) & 0x7f;
 
 	if (pcie->mode == PCI_HEADER_TYPE_NORMAL) {
-		printf("PCIe%u: %s %s", pcie->idx, dev->name, "Endpoint");
+		printf("PCIe%u: %s %s", PCIE_SRDS_PRTCL(pcie->idx), dev->name,
+		       "Endpoint");
 		ls_pcie_g4_setup_ep(pcie);
 	} else {
-		printf("PCIe%u: %s %s", pcie->idx, dev->name, "Root Complex");
+		printf("PCIe%u: %s %s", PCIE_SRDS_PRTCL(pcie->idx), dev->name,
+		       "Root Complex");
 		ls_pcie_g4_setup_ctrl(pcie);
 	}
 
-- 
2.7.4

  parent reply	other threads:[~2020-09-28 10:56 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-28 10:56 [PATCH v2 00/12] Add label to pcie nodes Wasim Khan
2020-09-28 10:56 ` [PATCH v2 01/12] configs: lx2160a: Enable CONFIG_PCIE_LAYERSCAPE_GEN4 Wasim Khan
2020-12-11  7:58   ` Priyanka Jain
2020-09-28 10:56 ` [PATCH v2 02/12] pci: layerscape: Print pcie controller number starting from 1 Wasim Khan
2020-09-28 10:56 ` Wasim Khan [this message]
2020-09-28 10:56 ` [PATCH v2 04/12] arm: dts: lx2160a: add label to pcie nodes in dts Wasim Khan
2020-09-28 10:56 ` [PATCH v2 05/12] arm: dts: ls1046a: " Wasim Khan
2020-09-28 10:56 ` [PATCH v2 06/12] arm: dts: ls2080a: " Wasim Khan
2020-09-28 10:56 ` [PATCH v2 07/12] arm: dts: ls1088a: " Wasim Khan
2020-09-28 10:56 ` [PATCH v2 08/12] arm: dts: ls1012a: " Wasim Khan
2020-09-28 10:56 ` [PATCH v2 09/12] arm: dts: ls1043a: " Wasim Khan
2020-09-28 10:56 ` [PATCH v2 10/12] arm: dts: ls1028a: " Wasim Khan
2020-09-28 10:56 ` [PATCH v2 11/12] pci: layerscape: Add size check for config resource Wasim Khan
2020-09-28 10:56 ` [PATCH v2 12/12] pci: ls_pcie_g4: " Wasim Khan
  -- strict thread matches above, loose matches on Subject: below --
2020-08-04 11:18 [PATCH v2 00/12] Add label to pcie nodes Wasim Khan
2020-08-04 11:18 ` [PATCH v2 03/12] pci: ls_pcie_g4: Print pcie controller number starting from 1 Wasim Khan

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=1601290574-20151-4-git-send-email-wasim.khan@nxp.com \
    --to=wasim.khan@nxp.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.