mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH v1 0/2] Macro Ordering and Typo Correction
@ 2026-09-07 10:54 Devendra K Verma
  2026-09-07 10:54 ` [PATCH v1 1/2] dmaengine: dw-edma: Macro order as per reg bit position Devendra K Verma
  2026-09-07 10:54 ` [PATCH v1 2/2] dmaengine: dw-edma: IP name corrected under its struct Devendra K Verma
  0 siblings, 2 replies; 3+ messages in thread
From: Devendra K Verma @ 2026-09-07 10:54 UTC (permalink / raw)
  To: mani, vkoul, frank.li, den
  Cc: dmaengine, linux-pci, linux-kernel, michal.simek, devverma

These are minor and cosmetic changes.

o If the macros declaring the bit positions of a register
  are in order then it provides a good view. Corrected
  the ordering for once such register.
o Corrected the typo under the IP related data struct to
  have the correct name under respective IP structs.

Previous reviewed-by tags were part of the following
review:

https://lore.kernel.org/all/aoW7vxy2lpXEbmRq@SMW015318/
https://lore.kernel.org/all/dx5jvko7ygrqugzkt3k74l3d7lk7iauikmxrzuhvn2b4bdv5ub@s2l6zl3alx3z/#t

Devendra K Verma (2):
  dmaengine: dw-edma: Macro order as per reg bit position
  dmaengine: dw-edma: IP name corrected under its struct

 drivers/dma/dw-edma/dw-edma-pcie.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

-- 
2.43.0


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH v1 1/2] dmaengine: dw-edma: Macro order as per reg bit position
  2026-09-07 10:54 [PATCH v1 0/2] Macro Ordering and Typo Correction Devendra K Verma
@ 2026-09-07 10:54 ` Devendra K Verma
  2026-09-07 10:54 ` [PATCH v1 2/2] dmaengine: dw-edma: IP name corrected under its struct Devendra K Verma
  1 sibling, 0 replies; 3+ messages in thread
From: Devendra K Verma @ 2026-09-07 10:54 UTC (permalink / raw)
  To: mani, vkoul, frank.li, den
  Cc: dmaengine, linux-pci, linux-kernel, michal.simek, devverma

For a register the macros providing masks for bit ranges.
These macros if placed in order provide good view of the bits.
Placed macros in ascending order.

Signed-off-by: Devendra K Verma <devverma@amd.com>
---
 drivers/dma/dw-edma/dw-edma-pcie.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/dma/dw-edma/dw-edma-pcie.c b/drivers/dma/dw-edma/dw-edma-pcie.c
index 9f237ba916de..006dea7d6322 100644
--- a/drivers/dma/dw-edma/dw-edma-pcie.c
+++ b/drivers/dma/dw-edma/dw-edma-pcie.c
@@ -31,8 +31,8 @@
 
 #define DW_PCIE_XILINX_MDB_VSEC_DMA_ID		0x6
 #define DW_PCIE_XILINX_MDB_VSEC_ID		0x20
-#define DW_PCIE_XILINX_MDB_VSEC_DMA_BAR		GENMASK(10, 8)
 #define DW_PCIE_XILINX_MDB_VSEC_DMA_MAP		GENMASK(2, 0)
+#define DW_PCIE_XILINX_MDB_VSEC_DMA_BAR		GENMASK(10, 8)
 #define DW_PCIE_XILINX_MDB_VSEC_DMA_WR_CH	GENMASK(9, 0)
 #define DW_PCIE_XILINX_MDB_VSEC_DMA_RD_CH	GENMASK(25, 16)
 
-- 
2.43.0


^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH v1 2/2] dmaengine: dw-edma: IP name corrected under its struct
  2026-09-07 10:54 [PATCH v1 0/2] Macro Ordering and Typo Correction Devendra K Verma
  2026-09-07 10:54 ` [PATCH v1 1/2] dmaengine: dw-edma: Macro order as per reg bit position Devendra K Verma
@ 2026-09-07 10:54 ` Devendra K Verma
  1 sibling, 0 replies; 3+ messages in thread
From: Devendra K Verma @ 2026-09-07 10:54 UTC (permalink / raw)
  To: mani, vkoul, frank.li, den
  Cc: dmaengine, linux-pci, linux-kernel, michal.simek, devverma

For 'xilinx_cpm6_dma_data' struct which is CPM6 IP, the comment
under this struct has typo and mentiones 'MDB' registers when
it shall be 'CPM6' regisers.

Signed-off-by: Devendra K Verma <devverma@amd.com>
---
 drivers/dma/dw-edma/dw-edma-pcie.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/dma/dw-edma/dw-edma-pcie.c b/drivers/dma/dw-edma/dw-edma-pcie.c
index 006dea7d6322..762a693ab55b 100644
--- a/drivers/dma/dw-edma/dw-edma-pcie.c
+++ b/drivers/dma/dw-edma/dw-edma-pcie.c
@@ -146,7 +146,7 @@ static const struct dw_edma_pcie_data xilinx_mdb_data = {
 };
 
 static const struct dw_edma_pcie_data xilinx_cpm6_dma_data = {
-	/* MDB registers location */
+	/* CPM6 registers location */
 	.rg.bar				= BAR_0,
 	.rg.off				= SZ_4K,	/*  4 Kbytes */
 	.rg.sz				= SZ_8K,	/*  8 Kbytes */
-- 
2.43.0


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-09-07 10:55 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-07 10:54 [PATCH v1 0/2] Macro Ordering and Typo Correction Devendra K Verma
2026-09-07 10:54 ` [PATCH v1 1/2] dmaengine: dw-edma: Macro order as per reg bit position Devendra K Verma
2026-09-07 10:54 ` [PATCH v1 2/2] dmaengine: dw-edma: IP name corrected under its struct Devendra K Verma

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®