netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 27/62] drivers/net/wireless/ath/ath9k: Remove unnecessary semicolons
       [not found] <cover.1246173664.git.joe@perches.com>
@ 2009-06-28 16:26 ` Joe Perches
  2009-06-28 16:26 ` [PATCH 28/62] drivers/net/bnx2x_link.c: " Joe Perches
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 10+ messages in thread
From: Joe Perches @ 2009-06-28 16:26 UTC (permalink / raw)
  To: linux-kernel
  Cc: trivial, Andrew Morton, Senthil Balasubramanian,
	Vasanthakumar Thiagarajan, Sujith Manoharan, Jouni Malinen,
	Luis R. Rodriguez, ath9k-devel, linux-wireless, netdev

Signed-off-by: Joe Perches <joe@perches.com>
---
 drivers/net/wireless/ath/ath9k/eeprom.c |    2 --
 drivers/net/wireless/ath/ath9k/hw.c     |    2 +-
 2 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/drivers/net/wireless/ath/ath9k/eeprom.c b/drivers/net/wireless/ath/ath9k/eeprom.c
index a2fda70..d82a0f9 100644
--- a/drivers/net/wireless/ath/ath9k/eeprom.c
+++ b/drivers/net/wireless/ath/ath9k/eeprom.c
@@ -2516,10 +2516,8 @@ static void ath9k_hw_set_def_power_per_rate_table(struct ath_hw *ah,
 			targetPowerCck.tPow2x[1];
 		ratesArray[rate5_5s] = ratesArray[rate5_5l] =
 			targetPowerCck.tPow2x[2];
-		;
 		ratesArray[rate11s] = ratesArray[rate11l] =
 			targetPowerCck.tPow2x[3];
-		;
 	}
 	if (IS_CHAN_HT40(chan)) {
 		for (i = 0; i < ARRAY_SIZE(targetPowerHt40.tPow2x); i++) {
diff --git a/drivers/net/wireless/ath/ath9k/hw.c b/drivers/net/wireless/ath/ath9k/hw.c
index 34935a8..cffb078 100644
--- a/drivers/net/wireless/ath/ath9k/hw.c
+++ b/drivers/net/wireless/ath/ath9k/hw.c
@@ -2345,7 +2345,7 @@ int ath9k_hw_reset(struct ath_hw *ah, struct ath9k_channel *chan,
 	ath9k_hw_init_bb(ah, chan);
 
 	if (!ath9k_hw_init_cal(ah, chan))
-		return -EIO;;
+		return -EIO;
 
 	rx_chainmask = ah->rxchainmask;
 	if ((rx_chainmask == 0x5) || (rx_chainmask == 0x3)) {
-- 
1.6.3.1.10.g659a0.dirty


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

* [PATCH 28/62] drivers/net/bnx2x_link.c: Remove unnecessary semicolons
       [not found] <cover.1246173664.git.joe@perches.com>
  2009-06-28 16:26 ` [PATCH 27/62] drivers/net/wireless/ath/ath9k: Remove unnecessary semicolons Joe Perches
@ 2009-06-28 16:26 ` Joe Perches
  2009-06-28 16:26 ` [PATCH 29/62] drivers/net/igb/igb_main.c: " Joe Perches
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 10+ messages in thread
From: Joe Perches @ 2009-06-28 16:26 UTC (permalink / raw)
  To: linux-kernel; +Cc: trivial, Andrew Morton, Eilon Greenstein, netdev

Signed-off-by: Joe Perches <joe@perches.com>
---
 drivers/net/bnx2x_link.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/bnx2x_link.c b/drivers/net/bnx2x_link.c
index ed648ac..f5f45c6 100644
--- a/drivers/net/bnx2x_link.c
+++ b/drivers/net/bnx2x_link.c
@@ -2390,7 +2390,7 @@ static u8 bnx2x_read_sfp_module_eeprom(struct link_params *params, u16 addr,
 			      MDIO_PMA_REG_8726_TWO_WIRE_CTRL, &val);
 		if ((val & MDIO_PMA_REG_8726_TWO_WIRE_CTRL_STATUS_MASK) ==
 		    MDIO_PMA_REG_8726_TWO_WIRE_STATUS_IDLE)
-			return 0;;
+			return 0;
 		msleep(1);
 	}
 	return -EINVAL;
-- 
1.6.3.1.10.g659a0.dirty


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

* [PATCH 29/62] drivers/net/igb/igb_main.c: Remove unnecessary semicolons
       [not found] <cover.1246173664.git.joe@perches.com>
  2009-06-28 16:26 ` [PATCH 27/62] drivers/net/wireless/ath/ath9k: Remove unnecessary semicolons Joe Perches
  2009-06-28 16:26 ` [PATCH 28/62] drivers/net/bnx2x_link.c: " Joe Perches
@ 2009-06-28 16:26 ` Joe Perches
  2009-06-28 16:26 ` [PATCH 30/62] drivers/net/qlge/qlge_main.c: " Joe Perches
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 10+ messages in thread
From: Joe Perches @ 2009-06-28 16:26 UTC (permalink / raw)
  To: linux-kernel
  Cc: trivial, Andrew Morton, John Ronciak, PJ Waskiewicz, Bruce Allan,
	Jesse Brandeburg, Jeff Kirsher, e1000-devel, netdev

Signed-off-by: Joe Perches <joe@perches.com>
---
 drivers/net/igb/igb_main.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/igb/igb_main.c b/drivers/net/igb/igb_main.c
index ea17319..43d5fda 100644
--- a/drivers/net/igb/igb_main.c
+++ b/drivers/net/igb/igb_main.c
@@ -3901,7 +3901,7 @@ static int igb_set_vf_multicasts(struct igb_adapter *adapter,
 	/* VFs are limited to using the MTA hash table for their multicast
 	 * addresses */
 	for (i = 0; i < n; i++)
-		vf_data->vf_mc_hashes[i] = hash_list[i];;
+		vf_data->vf_mc_hashes[i] = hash_list[i];
 
 	/* Flush and reset the mta with the new values */
 	igb_set_multi(adapter->netdev);
@@ -5447,7 +5447,7 @@ static inline void igb_set_rah_pool(struct e1000_hw *hw, int pool, int entry)
 
 	reg_data = rd32(E1000_RAH(entry));
 	reg_data &= ~E1000_RAH_POOL_MASK;
-	reg_data |= E1000_RAH_POOL_1 << pool;;
+	reg_data |= E1000_RAH_POOL_1 << pool;
 	wr32(E1000_RAH(entry), reg_data);
 }
 
-- 
1.6.3.1.10.g659a0.dirty


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

* [PATCH 30/62] drivers/net/qlge/qlge_main.c: Remove unnecessary semicolons
       [not found] <cover.1246173664.git.joe@perches.com>
                   ` (2 preceding siblings ...)
  2009-06-28 16:26 ` [PATCH 29/62] drivers/net/igb/igb_main.c: " Joe Perches
@ 2009-06-28 16:26 ` Joe Perches
  2009-06-28 18:35   ` [PATCH] MAINTAINERS: QLGE 10Gb ETHERNET - pair P:/M: entries properly Joe Perches
  2009-06-28 16:26 ` [PATCH 31/62] drivers/net/skfp: Remove unnecessary semicolons Joe Perches
                   ` (3 subsequent siblings)
  7 siblings, 1 reply; 10+ messages in thread
From: Joe Perches @ 2009-06-28 16:26 UTC (permalink / raw)
  To: linux-kernel; +Cc: trivial, Andrew Morton, ron.mercer, Ron Mercer, netdev

Signed-off-by: Joe Perches <joe@perches.com>
---
 drivers/net/qlge/qlge_main.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/net/qlge/qlge_main.c b/drivers/net/qlge/qlge_main.c
index 90d1f76..bc41287 100644
--- a/drivers/net/qlge/qlge_main.c
+++ b/drivers/net/qlge/qlge_main.c
@@ -2607,7 +2607,7 @@ static int ql_start_rx_ring(struct ql_adapter *qdev, struct rx_ring *rx_ring)
 	    FLAGS_LI;		/* Load irq delay values */
 	if (rx_ring->lbq_len) {
 		cqicb->flags |= FLAGS_LL;	/* Load lbq values */
-		tmp = (u64)rx_ring->lbq_base_dma;;
+		tmp = (u64)rx_ring->lbq_base_dma;
 		base_indirect_ptr = (__le64 *) rx_ring->lbq_base_indirect;
 		page_entries = 0;
 		do {
@@ -2631,7 +2631,7 @@ static int ql_start_rx_ring(struct ql_adapter *qdev, struct rx_ring *rx_ring)
 	}
 	if (rx_ring->sbq_len) {
 		cqicb->flags |= FLAGS_LS;	/* Load sbq values */
-		tmp = (u64)rx_ring->sbq_base_dma;;
+		tmp = (u64)rx_ring->sbq_base_dma;
 		base_indirect_ptr = (__le64 *) rx_ring->sbq_base_indirect;
 		page_entries = 0;
 		do {
-- 
1.6.3.1.10.g659a0.dirty


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

* [PATCH 31/62] drivers/net/skfp: Remove unnecessary semicolons
       [not found] <cover.1246173664.git.joe@perches.com>
                   ` (3 preceding siblings ...)
  2009-06-28 16:26 ` [PATCH 30/62] drivers/net/qlge/qlge_main.c: " Joe Perches
@ 2009-06-28 16:26 ` Joe Perches
  2009-06-28 16:26 ` [PATCH 32/62] drivers/net/skge.c: " Joe Perches
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 10+ messages in thread
From: Joe Perches @ 2009-06-28 16:26 UTC (permalink / raw)
  To: linux-kernel; +Cc: trivial, Andrew Morton, netdev

Signed-off-by: Joe Perches <joe@perches.com>
---
 drivers/net/skfp/pcmplc.c |    2 +-
 drivers/net/skfp/pmf.c    |    8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/net/skfp/pcmplc.c b/drivers/net/skfp/pcmplc.c
index f1df2ec..e6b33ee 100644
--- a/drivers/net/skfp/pcmplc.c
+++ b/drivers/net/skfp/pcmplc.c
@@ -960,7 +960,7 @@ static void pcm_fsm(struct s_smc *smc, struct s_phy *phy, int cmd)
 			/*PC88b*/
 			if (!phy->cf_join) {
 				phy->cf_join = TRUE ;
-				queue_event(smc,EVENT_CFM,CF_JOIN+np) ; ;
+				queue_event(smc,EVENT_CFM,CF_JOIN+np) ;
 			}
 			if (cmd == PC_JOIN)
 				GO_STATE(PC8_ACTIVE) ;
diff --git a/drivers/net/skfp/pmf.c b/drivers/net/skfp/pmf.c
index 79e665e..a320fdb 100644
--- a/drivers/net/skfp/pmf.c
+++ b/drivers/net/skfp/pmf.c
@@ -807,9 +807,9 @@ void smt_add_para(struct s_smc *smc, struct s_pcon *pcon, u_short para,
 				mib_p->fddiPORTLerFlag ;
 			sp->p4050_pad = 0 ;
 			sp->p4050_cutoff =
-				mib_p->fddiPORTLer_Cutoff ; ;
+				mib_p->fddiPORTLer_Cutoff ;
 			sp->p4050_alarm =
-				mib_p->fddiPORTLer_Alarm ; ;
+				mib_p->fddiPORTLer_Alarm ;
 			sp->p4050_estimate =
 				mib_p->fddiPORTLer_Estimate ;
 			sp->p4050_reject_ct =
@@ -829,7 +829,7 @@ void smt_add_para(struct s_smc *smc, struct s_pcon *pcon, u_short para,
 			sp->p4051_porttype =
 				mib_p->fddiPORTMy_Type ;
 			sp->p4051_connectstate =
-				mib_p->fddiPORTConnectState ; ;
+				mib_p->fddiPORTConnectState ;
 			sp->p4051_pc_neighbor =
 				mib_p->fddiPORTNeighborType ;
 			sp->p4051_pc_withhold =
@@ -853,7 +853,7 @@ void smt_add_para(struct s_smc *smc, struct s_pcon *pcon, u_short para,
 			struct smt_p_4053	*sp ;
 			sp = (struct smt_p_4053 *) to ;
 			sp->p4053_multiple =
-				mib_p->fddiPORTMultiple_P ; ;
+				mib_p->fddiPORTMultiple_P ;
 			sp->p4053_availablepaths =
 				mib_p->fddiPORTAvailablePaths ;
 			sp->p4053_currentpath =
-- 
1.6.3.1.10.g659a0.dirty


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

* [PATCH 32/62] drivers/net/skge.c: Remove unnecessary semicolons
       [not found] <cover.1246173664.git.joe@perches.com>
                   ` (4 preceding siblings ...)
  2009-06-28 16:26 ` [PATCH 31/62] drivers/net/skfp: Remove unnecessary semicolons Joe Perches
@ 2009-06-28 16:26 ` Joe Perches
  2009-06-28 16:26 ` [PATCH 33/62] drivers/net/sky2.c: " Joe Perches
  2009-06-28 16:26 ` [PATCH 34/62] drivers/net: " Joe Perches
  7 siblings, 0 replies; 10+ messages in thread
From: Joe Perches @ 2009-06-28 16:26 UTC (permalink / raw)
  To: linux-kernel; +Cc: trivial, Andrew Morton, Stephen Hemminger, netdev

Signed-off-by: Joe Perches <joe@perches.com>
---
 drivers/net/skge.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/skge.c b/drivers/net/skge.c
index 60d502e..0202471 100644
--- a/drivers/net/skge.c
+++ b/drivers/net/skge.c
@@ -215,7 +215,7 @@ static void skge_wol_init(struct skge_port *skge)
 	if (skge->wol & WAKE_MAGIC)
 		ctrl |= WOL_CTL_ENA_PME_ON_MAGIC_PKT|WOL_CTL_ENA_MAGIC_PKT_UNIT;
 	else
-		ctrl |= WOL_CTL_DIS_PME_ON_MAGIC_PKT|WOL_CTL_DIS_MAGIC_PKT_UNIT;;
+		ctrl |= WOL_CTL_DIS_PME_ON_MAGIC_PKT|WOL_CTL_DIS_MAGIC_PKT_UNIT;
 
 	ctrl |= WOL_CTL_DIS_PME_ON_PATTERN|WOL_CTL_DIS_PATTERN_UNIT;
 	skge_write16(hw, WOL_REGS(port, WOL_CTRL_STAT), ctrl);
-- 
1.6.3.1.10.g659a0.dirty


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

* [PATCH 33/62] drivers/net/sky2.c: Remove unnecessary semicolons
       [not found] <cover.1246173664.git.joe@perches.com>
                   ` (5 preceding siblings ...)
  2009-06-28 16:26 ` [PATCH 32/62] drivers/net/skge.c: " Joe Perches
@ 2009-06-28 16:26 ` Joe Perches
  2009-06-28 16:26 ` [PATCH 34/62] drivers/net: " Joe Perches
  7 siblings, 0 replies; 10+ messages in thread
From: Joe Perches @ 2009-06-28 16:26 UTC (permalink / raw)
  To: linux-kernel; +Cc: trivial, Andrew Morton, Stephen Hemminger, netdev

Signed-off-by: Joe Perches <joe@perches.com>
---
 drivers/net/sky2.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/net/sky2.c b/drivers/net/sky2.c
index 7681d28..c4281b5 100644
--- a/drivers/net/sky2.c
+++ b/drivers/net/sky2.c
@@ -749,7 +749,7 @@ static void sky2_wol_init(struct sky2_port *sky2)
 	if (sky2->wol & WAKE_MAGIC)
 		ctrl |= WOL_CTL_ENA_PME_ON_MAGIC_PKT|WOL_CTL_ENA_MAGIC_PKT_UNIT;
 	else
-		ctrl |= WOL_CTL_DIS_PME_ON_MAGIC_PKT|WOL_CTL_DIS_MAGIC_PKT_UNIT;;
+		ctrl |= WOL_CTL_DIS_PME_ON_MAGIC_PKT|WOL_CTL_DIS_MAGIC_PKT_UNIT;
 
 	ctrl |= WOL_CTL_DIS_PME_ON_PATTERN|WOL_CTL_DIS_PATTERN_UNIT;
 	sky2_write16(hw, WOL_REGS(port, WOL_CTRL_STAT), ctrl);
-- 
1.6.3.1.10.g659a0.dirty


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

* [PATCH 34/62] drivers/net: Remove unnecessary semicolons
       [not found] <cover.1246173664.git.joe@perches.com>
                   ` (6 preceding siblings ...)
  2009-06-28 16:26 ` [PATCH 33/62] drivers/net/sky2.c: " Joe Perches
@ 2009-06-28 16:26 ` Joe Perches
  7 siblings, 0 replies; 10+ messages in thread
From: Joe Perches @ 2009-06-28 16:26 UTC (permalink / raw)
  To: linux-kernel; +Cc: trivial, Andrew Morton, netdev

Signed-off-by: Joe Perches <joe@perches.com>
---
 drivers/net/arcnet/arc-rawmode.c       |    1 -
 drivers/net/arcnet/capmode.c           |    1 -
 drivers/net/gianfar_ethtool.c          |    2 +-
 drivers/net/ibm_newemac/core.c         |    8 ++++----
 drivers/net/ll_temac_main.c            |    2 +-
 drivers/net/ni52.c                     |    4 ++--
 drivers/net/vxge/vxge-config.h         |    2 +-
 drivers/net/vxge/vxge-main.c           |    2 +-
 drivers/net/wireless/iwmc3200wifi/rx.c |    8 ++++----
 9 files changed, 14 insertions(+), 16 deletions(-)

diff --git a/drivers/net/arcnet/arc-rawmode.c b/drivers/net/arcnet/arc-rawmode.c
index 646dfc5..8ea9c75 100644
--- a/drivers/net/arcnet/arc-rawmode.c
+++ b/drivers/net/arcnet/arc-rawmode.c
@@ -123,7 +123,6 @@ static void rx(struct net_device *dev, int bufnum,
 	BUGLVL(D_SKB) arcnet_dump_skb(dev, skb, "rx");
 
 	skb->protocol = cpu_to_be16(ETH_P_ARCNET);
-;
 	netif_rx(skb);
 }
 
diff --git a/drivers/net/arcnet/capmode.c b/drivers/net/arcnet/capmode.c
index 083e210..66bcbbb 100644
--- a/drivers/net/arcnet/capmode.c
+++ b/drivers/net/arcnet/capmode.c
@@ -149,7 +149,6 @@ static void rx(struct net_device *dev, int bufnum,
 	BUGLVL(D_SKB) arcnet_dump_skb(dev, skb, "rx");
 
 	skb->protocol = cpu_to_be16(ETH_P_ARCNET);
-;
 	netif_rx(skb);
 }
 
diff --git a/drivers/net/gianfar_ethtool.c b/drivers/net/gianfar_ethtool.c
index dbf06e9..1c1790d 100644
--- a/drivers/net/gianfar_ethtool.c
+++ b/drivers/net/gianfar_ethtool.c
@@ -293,7 +293,7 @@ static int gfar_gcoalesce(struct net_device *dev, struct ethtool_coalesce *cvals
 	rxtime  = get_ictt_value(priv->rxic);
 	rxcount = get_icft_value(priv->rxic);
 	txtime  = get_ictt_value(priv->txic);
-	txcount = get_icft_value(priv->txic);;
+	txcount = get_icft_value(priv->txic);
 	cvals->rx_coalesce_usecs = gfar_ticks2usecs(priv, rxtime);
 	cvals->rx_max_coalesced_frames = rxcount;
 
diff --git a/drivers/net/ibm_newemac/core.c b/drivers/net/ibm_newemac/core.c
index beb8421..d4531ef 100644
--- a/drivers/net/ibm_newemac/core.c
+++ b/drivers/net/ibm_newemac/core.c
@@ -2557,13 +2557,13 @@ static int __devinit emac_init_config(struct emac_instance *dev)
 	if (emac_read_uint_prop(np, "mdio-device", &dev->mdio_ph, 0))
 		dev->mdio_ph = 0;
 	if (emac_read_uint_prop(np, "zmii-device", &dev->zmii_ph, 0))
-		dev->zmii_ph = 0;;
+		dev->zmii_ph = 0;
 	if (emac_read_uint_prop(np, "zmii-channel", &dev->zmii_port, 0))
-		dev->zmii_port = 0xffffffff;;
+		dev->zmii_port = 0xffffffff;
 	if (emac_read_uint_prop(np, "rgmii-device", &dev->rgmii_ph, 0))
-		dev->rgmii_ph = 0;;
+		dev->rgmii_ph = 0;
 	if (emac_read_uint_prop(np, "rgmii-channel", &dev->rgmii_port, 0))
-		dev->rgmii_port = 0xffffffff;;
+		dev->rgmii_port = 0xffffffff;
 	if (emac_read_uint_prop(np, "fifo-entry-size", &dev->fifo_entry_size, 0))
 		dev->fifo_entry_size = 16;
 	if (emac_read_uint_prop(np, "mal-burst-size", &dev->mal_burst_size, 0))
diff --git a/drivers/net/ll_temac_main.c b/drivers/net/ll_temac_main.c
index 96e7248..d23e817 100644
--- a/drivers/net/ll_temac_main.c
+++ b/drivers/net/ll_temac_main.c
@@ -865,7 +865,7 @@ temac_of_probe(struct of_device *op, const struct of_device_id *match)
 	dcrs = dcr_resource_start(np, 0);
 	if (dcrs == 0) {
 		dev_err(&op->dev, "could not get DMA register address\n");
-		goto nodev;;
+		goto nodev;
 	}
 	lp->sdma_dcrs = dcr_map(np, dcrs, dcr_resource_len(np, 0));
 	dev_dbg(&op->dev, "DCR base: %x\n", dcrs);
diff --git a/drivers/net/ni52.c b/drivers/net/ni52.c
index 77d44a0..3679e2b 100644
--- a/drivers/net/ni52.c
+++ b/drivers/net/ni52.c
@@ -615,10 +615,10 @@ static int init586(struct net_device *dev)
 	/* addr_len |!src_insert |pre-len |loopback */
 	writeb(0x2e, &cfg_cmd->adr_len);
 	writeb(0x00, &cfg_cmd->priority);
-	writeb(0x60, &cfg_cmd->ifs);;
+	writeb(0x60, &cfg_cmd->ifs);
 	writeb(0x00, &cfg_cmd->time_low);
 	writeb(0xf2, &cfg_cmd->time_high);
-	writeb(0x00, &cfg_cmd->promisc);;
+	writeb(0x00, &cfg_cmd->promisc);
 	if (dev->flags & IFF_ALLMULTI) {
 		int len = ((char __iomem *)p->iscp - (char __iomem *)ptr - 8) / 6;
 		if (num_addrs > len) {
diff --git a/drivers/net/vxge/vxge-config.h b/drivers/net/vxge/vxge-config.h
index afbdf6f..e65a381 100644
--- a/drivers/net/vxge/vxge-config.h
+++ b/drivers/net/vxge/vxge-config.h
@@ -1547,7 +1547,7 @@ void vxge_hw_ring_rxd_1b_info_get(
 	rxd_info->l4_cksum_valid =
 		(u32)VXGE_HW_RING_RXD_L4_CKSUM_CORRECT_GET(rxdp->control_0);
 	rxd_info->l4_cksum =
-		(u32)VXGE_HW_RING_RXD_L4_CKSUM_GET(rxdp->control_0);;
+		(u32)VXGE_HW_RING_RXD_L4_CKSUM_GET(rxdp->control_0);
 	rxd_info->frame =
 		(u32)VXGE_HW_RING_RXD_ETHER_ENCAP_GET(rxdp->control_0);
 	rxd_info->proto =
diff --git a/drivers/net/vxge/vxge-main.c b/drivers/net/vxge/vxge-main.c
index 6034497..fb7e6b1 100644
--- a/drivers/net/vxge/vxge-main.c
+++ b/drivers/net/vxge/vxge-main.c
@@ -2341,7 +2341,7 @@ static int vxge_enable_msix(struct vxgedev *vdev)
 	enum vxge_hw_status status;
 	/* 0 - Tx, 1 - Rx  */
 	int tim_msix_id[4];
-	int alarm_msix_id = 0, msix_intr_vect = 0;;
+	int alarm_msix_id = 0, msix_intr_vect = 0;
 	vdev->intr_cnt = 0;
 
 	/* allocate msix vectors */
diff --git a/drivers/net/wireless/iwmc3200wifi/rx.c b/drivers/net/wireless/iwmc3200wifi/rx.c
index d73cf96..4cec54e 100644
--- a/drivers/net/wireless/iwmc3200wifi/rx.c
+++ b/drivers/net/wireless/iwmc3200wifi/rx.c
@@ -779,16 +779,16 @@ static int iwm_mlme_mgt_frame(struct iwm_priv *iwm, u8 *buf,
 		    le16_to_cpu(mgt_frame->len));
 
 	if (ieee80211_is_assoc_req(mgt->frame_control)) {
-		ie = mgt->u.assoc_req.variable;;
+		ie = mgt->u.assoc_req.variable;
 		event = IWEVASSOCREQIE;
 	} else if (ieee80211_is_reassoc_req(mgt->frame_control)) {
-		ie = mgt->u.reassoc_req.variable;;
+		ie = mgt->u.reassoc_req.variable;
 		event = IWEVASSOCREQIE;
 	} else if (ieee80211_is_assoc_resp(mgt->frame_control)) {
-		ie = mgt->u.assoc_resp.variable;;
+		ie = mgt->u.assoc_resp.variable;
 		event = IWEVASSOCRESPIE;
 	} else if (ieee80211_is_reassoc_resp(mgt->frame_control)) {
-		ie = mgt->u.reassoc_resp.variable;;
+		ie = mgt->u.reassoc_resp.variable;
 		event = IWEVASSOCRESPIE;
 	} else {
 		IWM_ERR(iwm, "Unsupported management frame");
-- 
1.6.3.1.10.g659a0.dirty


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

* [PATCH] MAINTAINERS: QLGE 10Gb ETHERNET - pair P:/M: entries properly
  2009-06-28 16:26 ` [PATCH 30/62] drivers/net/qlge/qlge_main.c: " Joe Perches
@ 2009-06-28 18:35   ` Joe Perches
  2009-06-28 18:40     ` David Miller
  0 siblings, 1 reply; 10+ messages in thread
From: Joe Perches @ 2009-06-28 18:35 UTC (permalink / raw)
  To: linux-kernel; +Cc: trivial, Andrew Morton, Ron Mercer, linux-driver, netdev

Signed-off-by: Joe Perches <joe@perches.com>

diff --git a/MAINTAINERS b/MAINTAINERS
index fa2a16d..57357d4 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -4766,8 +4766,8 @@ F:	drivers/net/qla3xxx.*
 
 QLOGIC QLGE 10Gb ETHERNET DRIVER
 P:	Ron Mercer
-M:	linux-driver@qlogic.com
 M:	ron.mercer@qlogic.com
+M:	linux-driver@qlogic.com
 L:	netdev@vger.kernel.org
 S:	Supported
 F:	drivers/net/qlge/



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

* Re: [PATCH] MAINTAINERS: QLGE 10Gb ETHERNET - pair P:/M: entries properly
  2009-06-28 18:35   ` [PATCH] MAINTAINERS: QLGE 10Gb ETHERNET - pair P:/M: entries properly Joe Perches
@ 2009-06-28 18:40     ` David Miller
  0 siblings, 0 replies; 10+ messages in thread
From: David Miller @ 2009-06-28 18:40 UTC (permalink / raw)
  To: joe; +Cc: linux-kernel, trivial, akpm, ron.mercer, linux-driver, netdev

From: Joe Perches <joe@perches.com>
Date: Sun, 28 Jun 2009 11:35:19 -0700

> Signed-off-by: Joe Perches <joe@perches.com>

Acked-by: David S. Miller <davem@davemloft.net>

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

end of thread, other threads:[~2009-06-28 18:40 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <cover.1246173664.git.joe@perches.com>
2009-06-28 16:26 ` [PATCH 27/62] drivers/net/wireless/ath/ath9k: Remove unnecessary semicolons Joe Perches
2009-06-28 16:26 ` [PATCH 28/62] drivers/net/bnx2x_link.c: " Joe Perches
2009-06-28 16:26 ` [PATCH 29/62] drivers/net/igb/igb_main.c: " Joe Perches
2009-06-28 16:26 ` [PATCH 30/62] drivers/net/qlge/qlge_main.c: " Joe Perches
2009-06-28 18:35   ` [PATCH] MAINTAINERS: QLGE 10Gb ETHERNET - pair P:/M: entries properly Joe Perches
2009-06-28 18:40     ` David Miller
2009-06-28 16:26 ` [PATCH 31/62] drivers/net/skfp: Remove unnecessary semicolons Joe Perches
2009-06-28 16:26 ` [PATCH 32/62] drivers/net/skge.c: " Joe Perches
2009-06-28 16:26 ` [PATCH 33/62] drivers/net/sky2.c: " Joe Perches
2009-06-28 16:26 ` [PATCH 34/62] drivers/net: " Joe Perches

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).