All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drivers: net: ethernet: octeon_mgmt: fix a compiler warning
@ 2014-09-08 15:01 Aaro Koskinen
  2014-09-08 16:36 ` David Daney
  2014-09-08 21:24 ` David Miller
  0 siblings, 2 replies; 3+ messages in thread
From: Aaro Koskinen @ 2014-09-08 15:01 UTC (permalink / raw)
  To: netdev, David Daney; +Cc: Aaro Koskinen

Fix the following compiler warning:

drivers/net/ethernet/octeon/octeon_mgmt.c: In function 'octeon_mgmt_clean_tx_buffers':
drivers/net/ethernet/octeon/octeon_mgmt.c:295:4: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
    u64 ns = cvmx_read_csr(CVMX_MIXX_TSTAMP(p->port));
    ^

Signed-off-by: Aaro Koskinen <aaro.koskinen@nsn.com>
---
 drivers/net/ethernet/octeon/octeon_mgmt.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/octeon/octeon_mgmt.c b/drivers/net/ethernet/octeon/octeon_mgmt.c
index 979c698..a422930 100644
--- a/drivers/net/ethernet/octeon/octeon_mgmt.c
+++ b/drivers/net/ethernet/octeon/octeon_mgmt.c
@@ -290,9 +290,11 @@ static void octeon_mgmt_clean_tx_buffers(struct octeon_mgmt *p)
 		/* Read the hardware TX timestamp if one was recorded */
 		if (unlikely(re.s.tstamp)) {
 			struct skb_shared_hwtstamps ts;
+			u64 ns;
+
 			memset(&ts, 0, sizeof(ts));
 			/* Read the timestamp */
-			u64 ns = cvmx_read_csr(CVMX_MIXX_TSTAMP(p->port));
+			ns = cvmx_read_csr(CVMX_MIXX_TSTAMP(p->port));
 			/* Remove the timestamp from the FIFO */
 			cvmx_write_csr(CVMX_MIXX_TSCTL(p->port), 0);
 			/* Tell the kernel about the timestamp */
-- 
2.1.0

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

* Re: [PATCH] drivers: net: ethernet: octeon_mgmt: fix a compiler warning
  2014-09-08 15:01 [PATCH] drivers: net: ethernet: octeon_mgmt: fix a compiler warning Aaro Koskinen
@ 2014-09-08 16:36 ` David Daney
  2014-09-08 21:24 ` David Miller
  1 sibling, 0 replies; 3+ messages in thread
From: David Daney @ 2014-09-08 16:36 UTC (permalink / raw)
  To: Aaro Koskinen, netdev, David Miller; +Cc: David Daney

On 09/08/2014 08:01 AM, Aaro Koskinen wrote:
> Fix the following compiler warning:
>
> drivers/net/ethernet/octeon/octeon_mgmt.c: In function 'octeon_mgmt_clean_tx_buffers':
> drivers/net/ethernet/octeon/octeon_mgmt.c:295:4: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
>      u64 ns = cvmx_read_csr(CVMX_MIXX_TSTAMP(p->port));
>      ^
>
> Signed-off-by: Aaro Koskinen <aaro.koskinen@nsn.com>

For some reason we missed this when the initial patch was created. 
Thanks for fixing it...

Acked-by: David Daney <david.daney@cavium.com>


> ---
>   drivers/net/ethernet/octeon/octeon_mgmt.c | 4 +++-
>   1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/net/ethernet/octeon/octeon_mgmt.c b/drivers/net/ethernet/octeon/octeon_mgmt.c
> index 979c698..a422930 100644
> --- a/drivers/net/ethernet/octeon/octeon_mgmt.c
> +++ b/drivers/net/ethernet/octeon/octeon_mgmt.c
> @@ -290,9 +290,11 @@ static void octeon_mgmt_clean_tx_buffers(struct octeon_mgmt *p)
>   		/* Read the hardware TX timestamp if one was recorded */
>   		if (unlikely(re.s.tstamp)) {
>   			struct skb_shared_hwtstamps ts;
> +			u64 ns;
> +
>   			memset(&ts, 0, sizeof(ts));
>   			/* Read the timestamp */
> -			u64 ns = cvmx_read_csr(CVMX_MIXX_TSTAMP(p->port));
> +			ns = cvmx_read_csr(CVMX_MIXX_TSTAMP(p->port));
>   			/* Remove the timestamp from the FIFO */
>   			cvmx_write_csr(CVMX_MIXX_TSCTL(p->port), 0);
>   			/* Tell the kernel about the timestamp */
>

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

* Re: [PATCH] drivers: net: ethernet: octeon_mgmt: fix a compiler warning
  2014-09-08 15:01 [PATCH] drivers: net: ethernet: octeon_mgmt: fix a compiler warning Aaro Koskinen
  2014-09-08 16:36 ` David Daney
@ 2014-09-08 21:24 ` David Miller
  1 sibling, 0 replies; 3+ messages in thread
From: David Miller @ 2014-09-08 21:24 UTC (permalink / raw)
  To: aaro.koskinen; +Cc: netdev, david.daney

From: Aaro Koskinen <aaro.koskinen@nsn.com>
Date: Mon,  8 Sep 2014 18:01:53 +0300

> Fix the following compiler warning:
> 
> drivers/net/ethernet/octeon/octeon_mgmt.c: In function 'octeon_mgmt_clean_tx_buffers':
> drivers/net/ethernet/octeon/octeon_mgmt.c:295:4: warning: ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
>     u64 ns = cvmx_read_csr(CVMX_MIXX_TSTAMP(p->port));
>     ^
> 
> Signed-off-by: Aaro Koskinen <aaro.koskinen@nsn.com>

Applied, thank you.

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

end of thread, other threads:[~2014-09-08 21:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-08 15:01 [PATCH] drivers: net: ethernet: octeon_mgmt: fix a compiler warning Aaro Koskinen
2014-09-08 16:36 ` David Daney
2014-09-08 21:24 ` David Miller

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.