Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1280267 > unrolled thread
| Started by | "Dmitry V. Krivenok" <krivenok.dmitry@gmail.com> |
|---|---|
| First post | 2015-11-30 21:50 +0100 |
| Last post | 2015-12-01 02:50 +0100 |
| Articles | 4 — 3 participants |
Back to article view | Back to linux.kernel
[PATCH 0/5] Do not use 0x in front of %pa[pd] "Dmitry V. Krivenok" <krivenok.dmitry@gmail.com> - 2015-11-30 21:50 +0100
[PATCH 5/5] pci: do not use 0x in front of %pap "Dmitry V. Krivenok" <krivenok.dmitry@gmail.com> - 2015-11-30 21:50 +0100
Re: [PATCH 5/5] pci: do not use 0x in front of %pap Ray Jui <rjui@broadcom.com> - 2015-11-30 22:00 +0100
Re: [PATCH 5/5] pci: do not use 0x in front of %pap Bjorn Helgaas <helgaas@kernel.org> - 2015-12-01 02:50 +0100
| From | "Dmitry V. Krivenok" <krivenok.dmitry@gmail.com> |
|---|---|
| Date | 2015-11-30 21:50 +0100 |
| Subject | [PATCH 0/5] Do not use 0x in front of %pa[pd] |
| Message-ID | <qADyy-8ry-11@gated-at.bofh.it> |
Do not use "0x" in front of %pa, %pap and %pad to avoid duplicate "0x" in the output. The changes were split per driver as suggested by Andy Shevchenko. Dmitry V. Krivenok (5): dma: do not use 0x in front of %pad i2c: do not use 0x in front of %pa nd: do not use 0x in front of %pa of: do not use 0x in front of %pa pci: do not use 0x in front of %pap drivers/dma/at_hdmac_regs.h | 2 +- drivers/i2c/busses/i2c-st.c | 2 +- drivers/nvdimm/pmem.c | 2 +- drivers/of/fdt.c | 2 +- drivers/pci/host/pcie-iproc.c | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) -- 2.6.2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | "Dmitry V. Krivenok" <krivenok.dmitry@gmail.com> |
|---|---|
| Date | 2015-11-30 21:50 +0100 |
| Subject | [PATCH 5/5] pci: do not use 0x in front of %pap |
| Message-ID | <qADyz-8ry-39@gated-at.bofh.it> |
| In reply to | #1280267 |
Signed-off-by: Dmitry V. Krivenok <krivenok.dmitry@gmail.com>
---
drivers/pci/host/pcie-iproc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/pci/host/pcie-iproc.c b/drivers/pci/host/pcie-iproc.c
index eac719a..d1ad883 100644
--- a/drivers/pci/host/pcie-iproc.c
+++ b/drivers/pci/host/pcie-iproc.c
@@ -245,7 +245,7 @@ static int iproc_pcie_setup_ob(struct iproc_pcie *pcie, u64 axi_addr,
if (size > max_size) {
dev_err(pcie->dev,
- "res size 0x%pap exceeds max supported size 0x%llx\n",
+ "res size %pap exceeds max supported size 0x%llx\n",
&size, max_size);
return -EINVAL;
}
--
2.6.2
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Ray Jui <rjui@broadcom.com> |
|---|---|
| Date | 2015-11-30 22:00 +0100 |
| Subject | Re: [PATCH 5/5] pci: do not use 0x in front of %pap |
| Message-ID | <qADIf-8wf-35@gated-at.bofh.it> |
| In reply to | #1280268 |
On 11/30/2015 12:45 PM, Dmitry V. Krivenok wrote:
> Signed-off-by: Dmitry V. Krivenok <krivenok.dmitry@gmail.com>
> ---
> drivers/pci/host/pcie-iproc.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/pci/host/pcie-iproc.c b/drivers/pci/host/pcie-iproc.c
> index eac719a..d1ad883 100644
> --- a/drivers/pci/host/pcie-iproc.c
> +++ b/drivers/pci/host/pcie-iproc.c
> @@ -245,7 +245,7 @@ static int iproc_pcie_setup_ob(struct iproc_pcie *pcie, u64 axi_addr,
>
> if (size > max_size) {
> dev_err(pcie->dev,
> - "res size 0x%pap exceeds max supported size 0x%llx\n",
> + "res size %pap exceeds max supported size 0x%llx\n",
> &size, max_size);
> return -EINVAL;
> }
>
This change looks good to me.
Acked-by: Ray Jui <rjui@broadcom.com>
Thanks,
Ray
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Bjorn Helgaas <helgaas@kernel.org> |
|---|---|
| Date | 2015-12-01 02:50 +0100 |
| Subject | Re: [PATCH 5/5] pci: do not use 0x in front of %pap |
| Message-ID | <qAIeR-32d-1@gated-at.bofh.it> |
| In reply to | #1280268 |
On Mon, Nov 30, 2015 at 11:45:49PM +0300, Dmitry V. Krivenok wrote:
> Signed-off-by: Dmitry V. Krivenok <krivenok.dmitry@gmail.com>
Applied with Ray's ack to pci/host-iproc for v4.5, thanks, Dmitry!
> ---
> drivers/pci/host/pcie-iproc.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/pci/host/pcie-iproc.c b/drivers/pci/host/pcie-iproc.c
> index eac719a..d1ad883 100644
> --- a/drivers/pci/host/pcie-iproc.c
> +++ b/drivers/pci/host/pcie-iproc.c
> @@ -245,7 +245,7 @@ static int iproc_pcie_setup_ob(struct iproc_pcie *pcie, u64 axi_addr,
>
> if (size > max_size) {
> dev_err(pcie->dev,
> - "res size 0x%pap exceeds max supported size 0x%llx\n",
> + "res size %pap exceeds max supported size 0x%llx\n",
> &size, max_size);
> return -EINVAL;
> }
> --
> 2.6.2
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web