diff mbox

[2/2] ethtool: stmmac: Add DMA HW Feature Register

Message ID 1498600275-22334-3-git-send-email-thor.thayer@linux.intel.com
State Superseded, archived
Delegated to: John Linville
Headers show

Commit Message

Thor Thayer June 27, 2017, 9:51 p.m. UTC
From: Thor Thayer <thor.thayer@linux.intel.com>

This patch adds the DMA HW Feature Register which is at the end
of the DMA registers and is documented in Version 3.70a.

Signed-off-by: Thor Thayer <thor.thayer@linux.intel.com>
---
 stmmac.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Giuseppe CAVALLARO June 28, 2017, 9:03 a.m. UTC | #1
On 6/27/2017 11:51 PM, thor.thayer@linux.intel.com wrote:
> From: Thor Thayer <thor.thayer@linux.intel.com>
>
> This patch adds the DMA HW Feature Register which is at the end
> of the DMA registers and is documented in Version 3.70a.
>
> Signed-off-by: Thor Thayer <thor.thayer@linux.intel.com>
> ---
>   stmmac.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/stmmac.c b/stmmac.c
> index e1bb291..7d7bebd 100644
> --- a/stmmac.c
> +++ b/stmmac.c
> @@ -64,7 +64,7 @@ int st_gmac_dump_regs(struct ethtool_drvinfo *info, struct ethtool_regs *regs)
>   	fprintf(stdout, "\n");
>   	fprintf(stdout, "DMA Registers\n");
>   	stmmac_reg = (unsigned int *)regs->data + DMA_REG_OFFSET;
> -	for (i = 0; i < 22; i++)
> +	for (i = 0; i < 23; i++)

thx Thor for these changes, I wonder if you could add a macro instead 23 
while doing this kind of changes

Sorry if I didn't it in the past.

the, you can send the series with my Acked-by: Giuseppe Cavallaro 
<peppe.cavallaro@st.com>

Regards

peppe


>   		fprintf(stdout, "Reg%d  0x%08X\n", i, *stmmac_reg++);
>   
>   	return 0;
Thor Thayer June 28, 2017, 1:25 p.m. UTC | #2
On 06/28/2017 04:03 AM, Giuseppe CAVALLARO wrote:
> On 6/27/2017 11:51 PM, thor.thayer@linux.intel.com wrote:
>> From: Thor Thayer <thor.thayer@linux.intel.com>
>>
>> This patch adds the DMA HW Feature Register which is at the end
>> of the DMA registers and is documented in Version 3.70a.
>>
>> Signed-off-by: Thor Thayer <thor.thayer@linux.intel.com>
>> ---
>>   stmmac.c | 2 +-
>>   1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/stmmac.c b/stmmac.c
>> index e1bb291..7d7bebd 100644
>> --- a/stmmac.c
>> +++ b/stmmac.c
>> @@ -64,7 +64,7 @@ int st_gmac_dump_regs(struct ethtool_drvinfo *info, 
>> struct ethtool_regs *regs)
>>       fprintf(stdout, "\n");
>>       fprintf(stdout, "DMA Registers\n");
>>       stmmac_reg = (unsigned int *)regs->data + DMA_REG_OFFSET;
>> -    for (i = 0; i < 22; i++)
>> +    for (i = 0; i < 23; i++)
> 
> thx Thor for these changes, I wonder if you could add a macro instead 23 
> while doing this kind of changes
> 
> Sorry if I didn't it in the past.
> 
> the, you can send the series with my Acked-by: Giuseppe Cavallaro 
> <peppe.cavallaro@st.com>
> 
> Regards
> 
> peppe
> 

Sure. I'll also add a macro for the # of main registers too (55). Some 
maintainers prefer the macros while others prefer the number to reduce 
the space.

Thanks for the quick review!

Thor
> 
>>           fprintf(stdout, "Reg%d  0x%08X\n", i, *stmmac_reg++);
>>       return 0;
> 
> 
>
diff mbox

Patch

diff --git a/stmmac.c b/stmmac.c
index e1bb291..7d7bebd 100644
--- a/stmmac.c
+++ b/stmmac.c
@@ -64,7 +64,7 @@  int st_gmac_dump_regs(struct ethtool_drvinfo *info, struct ethtool_regs *regs)
 	fprintf(stdout, "\n");
 	fprintf(stdout, "DMA Registers\n");
 	stmmac_reg = (unsigned int *)regs->data + DMA_REG_OFFSET;
-	for (i = 0; i < 22; i++)
+	for (i = 0; i < 23; i++)
 		fprintf(stdout, "Reg%d  0x%08X\n", i, *stmmac_reg++);
 
 	return 0;