diff mbox

cxgb3: slay double assignment

Message ID 20101022180003.GO8332@bombadil.infradead.org
State Not Applicable, archived
Delegated to: David Miller
Headers show

Commit Message

Kyle McMartin Oct. 22, 2010, 6 p.m. UTC
Noticed this while building Fedora today... It's been
there since around 2007, so I guess a new gcc must be catching
these.

Signed-off-by: Kyle McMartin <kyle@redhat.com>
---
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Comments

David Miller Oct. 24, 2010, 11:26 p.m. UTC | #1
From: Kyle McMartin <kyle@mcmartin.ca>
Date: Fri, 22 Oct 2010 14:00:03 -0400

> Noticed this while building Fedora today... It's been
> there since around 2007, so I guess a new gcc must be catching
> these.
> 
> Signed-off-by: Kyle McMartin <kyle@redhat.com>

This patch doesn't apply.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Kyle McMartin Oct. 24, 2010, 11:40 p.m. UTC | #2
On Sun, Oct 24, 2010 at 04:26:11PM -0700, David Miller wrote:
> > Noticed this while building Fedora today... It's been
> > there since around 2007, so I guess a new gcc must be catching
> > these.
> > 
> > Signed-off-by: Kyle McMartin <kyle@redhat.com>
> 
> This patch doesn't apply.
> 

You already merged a patch to fix it, sorry for the noise.

--Kyle
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/drivers/net/cxgb3/t3_hw.c b/drivers/net/cxgb3/t3_hw.c
index 427c451..997b14b 100644
--- a/drivers/net/cxgb3/t3_hw.c
+++ b/drivers/net/cxgb3/t3_hw.c
@@ -3682,7 +3682,7 @@  static void mc7_prep(struct adapter *adapter, struct mc7 *mc7,
 	mc7->name = name;
 	mc7->offset = base_addr - MC7_PMRX_BASE_ADDR;
 	cfg = t3_read_reg(adapter, mc7->offset + A_MC7_CFG);
-	mc7->size = mc7->size = G_DEN(cfg) == M_DEN ? 0 : mc7_calc_size(cfg);
+	mc7->size = G_DEN(cfg) == M_DEN ? 0 : mc7_calc_size(cfg);
 	mc7->width = G_WIDTH(cfg);
 }