* [PATCH v1] dmaengine: dw-edma: Cosmetic Changes
@ 2026-08-19 9:24 Devendra K Verma
2026-08-19 9:30 ` sashiko-bot
2026-08-19 14:20 ` Frank Li
0 siblings, 2 replies; 3+ messages in thread
From: Devendra K Verma @ 2026-08-19 9:24 UTC (permalink / raw)
To: mani, vkoul, frank.li, den
Cc: dmaengine, linux-pci, linux-kernel, michal.simek, devverma
o Arranging macros in ascending order as per the bits represented
o Cosmetic changes, typo corrections
Signed-off-by: Devendra K Verma <devverma@amd.com>
---
drivers/dma/dw-edma/dw-edma-pcie.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/dma/dw-edma/dw-edma-pcie.c b/drivers/dma/dw-edma/dw-edma-pcie.c
index 791c46e8ae4c..a171329b5686 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)
@@ -127,7 +127,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 */
@@ -324,9 +324,9 @@ static int dw_edma_pcie_probe(struct pci_dev *pdev,
struct dw_edma_pcie_data *pdata = (void *)pid->driver_data;
struct device *dev = &pdev->dev;
struct dw_edma_chip *chip;
+ bool non_ll = false;
int err, nr_irqs;
int i, mask;
- bool non_ll = false;
if (!pdata)
return -ENODEV;
--
2.43.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v1] dmaengine: dw-edma: Cosmetic Changes
2026-08-19 9:24 [PATCH v1] dmaengine: dw-edma: Cosmetic Changes Devendra K Verma
@ 2026-08-19 9:30 ` sashiko-bot
2026-08-19 14:20 ` Frank Li
1 sibling, 0 replies; 3+ messages in thread
From: sashiko-bot @ 2026-08-19 9:30 UTC (permalink / raw)
To: Devendra K Verma; +Cc: vkoul, dmaengine, linux-pci, Frank.Li
> o Arranging macros in ascending order as per the bits represented
> o Cosmetic changes, typo corrections
>
> Signed-off-by: Devendra K Verma <devverma@amd.com>
Sashiko has reviewed this patch and found no issues. It looks great!
--
Sashiko AI review · https://sashiko.dev/#/patchset/20260819092407.4150321-1-devverma@amd.com?part=1
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v1] dmaengine: dw-edma: Cosmetic Changes
2026-08-19 9:24 [PATCH v1] dmaengine: dw-edma: Cosmetic Changes Devendra K Verma
2026-08-19 9:30 ` sashiko-bot
@ 2026-08-19 14:20 ` Frank Li
1 sibling, 0 replies; 3+ messages in thread
From: Frank Li @ 2026-08-19 14:20 UTC (permalink / raw)
To: Devendra K Verma
Cc: mani, vkoul, frank.li, den, dmaengine, linux-pci, linux-kernel,
michal.simek
On Wed, Aug 19, 2026 at 02:54:07PM +0530, Devendra K Verma wrote:
> o Arranging macros in ascending order as per the bits represented
> o Cosmetic changes, typo corrections
>
> Signed-off-by: Devendra K Verma <devverma@amd.com>
> ---
Reviewed-by: Frank Li <Frank.Li@nxp.com>
> drivers/dma/dw-edma/dw-edma-pcie.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/dma/dw-edma/dw-edma-pcie.c b/drivers/dma/dw-edma/dw-edma-pcie.c
> index 791c46e8ae4c..a171329b5686 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)
>
> @@ -127,7 +127,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 */
> @@ -324,9 +324,9 @@ static int dw_edma_pcie_probe(struct pci_dev *pdev,
> struct dw_edma_pcie_data *pdata = (void *)pid->driver_data;
> struct device *dev = &pdev->dev;
> struct dw_edma_chip *chip;
> + bool non_ll = false;
> int err, nr_irqs;
> int i, mask;
> - bool non_ll = false;
>
> if (!pdata)
> return -ENODEV;
> --
> 2.43.0
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-08-19 14:20 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-19 9:24 [PATCH v1] dmaengine: dw-edma: Cosmetic Changes Devendra K Verma
2026-08-19 9:30 ` sashiko-bot
2026-08-19 14:20 ` Frank Li
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox