* [PATCH 07/44] drivers/isdn: Remove unnecessary semicolons
2010-11-15 3:04 [PATCH 00/44] remove unnecessary semicolons Joe Perches
@ 2010-11-15 3:04 ` Joe Perches
2010-11-15 19:08 ` David Miller
2010-11-15 3:04 ` [PATCH 12/44] drivers/net/bnx2x: " Joe Perches
` (11 subsequent siblings)
12 siblings, 1 reply; 25+ messages in thread
From: Joe Perches @ 2010-11-15 3:04 UTC (permalink / raw)
To: Jiri Kosina; +Cc: Karsten Keil, netdev, linux-kernel
Signed-off-by: Joe Perches <joe@perches.com>
---
drivers/isdn/hardware/mISDN/mISDNinfineon.c | 4 ++--
drivers/isdn/hardware/mISDN/mISDNisar.c | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/isdn/hardware/mISDN/mISDNinfineon.c b/drivers/isdn/hardware/mISDN/mISDNinfineon.c
index e90db88..bc0529a 100644
--- a/drivers/isdn/hardware/mISDN/mISDNinfineon.c
+++ b/drivers/isdn/hardware/mISDN/mISDNinfineon.c
@@ -420,7 +420,7 @@ enable_hwirq(struct inf_hw *hw)
break;
case INF_NICCY:
val = inl((u32)hw->cfg.start + NICCY_IRQ_CTRL_REG);
- val |= NICCY_IRQ_ENABLE;;
+ val |= NICCY_IRQ_ENABLE;
outl(val, (u32)hw->cfg.start + NICCY_IRQ_CTRL_REG);
break;
case INF_SCT_1:
@@ -924,7 +924,7 @@ setup_instance(struct inf_hw *card)
mISDNipac_init(&card->ipac, card);
if (card->ipac.isac.dch.dev.Bprotocols == 0)
- goto error_setup;;
+ goto error_setup;
err = mISDN_register_device(&card->ipac.isac.dch.dev,
&card->pdev->dev, card->name);
diff --git a/drivers/isdn/hardware/mISDN/mISDNisar.c b/drivers/isdn/hardware/mISDN/mISDNisar.c
index 38eb314..d13fa5b 100644
--- a/drivers/isdn/hardware/mISDN/mISDNisar.c
+++ b/drivers/isdn/hardware/mISDN/mISDNisar.c
@@ -264,7 +264,7 @@ load_firmware(struct isar_hw *isar, const u8 *buf, int size)
while (noc) {
val = le16_to_cpu(*sp++);
*mp++ = val >> 8;
- *mp++ = val & 0xFF;;
+ *mp++ = val & 0xFF;
noc--;
}
spin_lock_irqsave(isar->hwlock, flags);
--
1.7.3.1.g432b3.dirty
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [PATCH 12/44] drivers/net/bnx2x: Remove unnecessary semicolons
2010-11-15 3:04 [PATCH 00/44] remove unnecessary semicolons Joe Perches
2010-11-15 3:04 ` [PATCH 07/44] drivers/isdn: Remove " Joe Perches
@ 2010-11-15 3:04 ` Joe Perches
2010-11-15 19:08 ` David Miller
2010-11-15 3:04 ` [PATCH 13/44] drivers/net/e1000e: " Joe Perches
` (10 subsequent siblings)
12 siblings, 1 reply; 25+ messages in thread
From: Joe Perches @ 2010-11-15 3:04 UTC (permalink / raw)
To: Jiri Kosina; +Cc: Eilon Greenstein, netdev, linux-kernel
Signed-off-by: Joe Perches <joe@perches.com>
---
drivers/net/bnx2x/bnx2x_link.c | 4 ++--
drivers/net/bnx2x/bnx2x_main.c | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/net/bnx2x/bnx2x_link.c b/drivers/net/bnx2x/bnx2x_link.c
index 5809196..38aeffe 100644
--- a/drivers/net/bnx2x/bnx2x_link.c
+++ b/drivers/net/bnx2x/bnx2x_link.c
@@ -3904,7 +3904,7 @@ static u8 bnx2x_8726_read_sfp_module_eeprom(struct bnx2x_phy *phy,
MDIO_PMA_REG_SFP_TWO_WIRE_CTRL, &val);
if ((val & MDIO_PMA_REG_SFP_TWO_WIRE_CTRL_STATUS_MASK) ==
MDIO_PMA_REG_SFP_TWO_WIRE_STATUS_IDLE)
- return 0;;
+ return 0;
msleep(1);
}
return -EINVAL;
@@ -3988,7 +3988,7 @@ static u8 bnx2x_8727_read_sfp_module_eeprom(struct bnx2x_phy *phy,
MDIO_PMA_REG_SFP_TWO_WIRE_CTRL, &val);
if ((val & MDIO_PMA_REG_SFP_TWO_WIRE_CTRL_STATUS_MASK) ==
MDIO_PMA_REG_SFP_TWO_WIRE_STATUS_IDLE)
- return 0;;
+ return 0;
msleep(1);
}
diff --git a/drivers/net/bnx2x/bnx2x_main.c b/drivers/net/bnx2x/bnx2x_main.c
index e9ad16f..7ffcb08 100644
--- a/drivers/net/bnx2x/bnx2x_main.c
+++ b/drivers/net/bnx2x/bnx2x_main.c
@@ -8078,7 +8078,7 @@ static void __devinit bnx2x_get_port_hwinfo(struct bnx2x *bp)
int port = BP_PORT(bp);
u32 val, val2;
u32 config;
- u32 ext_phy_type, ext_phy_config;;
+ u32 ext_phy_type, ext_phy_config;
bp->link_params.bp = bp;
bp->link_params.port = port;
--
1.7.3.1.g432b3.dirty
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [PATCH 13/44] drivers/net/e1000e: Remove unnecessary semicolons
2010-11-15 3:04 [PATCH 00/44] remove unnecessary semicolons Joe Perches
2010-11-15 3:04 ` [PATCH 07/44] drivers/isdn: Remove " Joe Perches
2010-11-15 3:04 ` [PATCH 12/44] drivers/net/bnx2x: " Joe Perches
@ 2010-11-15 3:04 ` Joe Perches
2010-11-15 19:08 ` David Miller
2010-11-15 3:04 ` [PATCH 14/44] drivers/net/ixgbe: " Joe Perches
` (9 subsequent siblings)
12 siblings, 1 reply; 25+ messages in thread
From: Joe Perches @ 2010-11-15 3:04 UTC (permalink / raw)
To: Jiri Kosina
Cc: e1000-devel, Bruce Allan, Jesse Brandeburg, linux-kernel,
Greg Rose, John Ronciak, Jeff Kirsher, netdev
Signed-off-by: Joe Perches <joe@perches.com>
---
drivers/net/e1000e/netdev.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/net/e1000e/netdev.c b/drivers/net/e1000e/netdev.c
index c4ca162..a6d54e4 100644
--- a/drivers/net/e1000e/netdev.c
+++ b/drivers/net/e1000e/netdev.c
@@ -4595,7 +4595,7 @@ dma_error:
i += tx_ring->count;
i--;
buffer_info = &tx_ring->buffer_info[i];
- e1000_put_txbuf(adapter, buffer_info);;
+ e1000_put_txbuf(adapter, buffer_info);
}
return 0;
--
1.7.3.1.g432b3.dirty
------------------------------------------------------------------------------
Centralized Desktop Delivery: Dell and VMware Reference Architecture
Simplifying enterprise desktop deployment and management using
Dell EqualLogic storage and VMware View: A highly scalable, end-to-end
client virtualization framework. Read more!
http://p.sf.net/sfu/dell-eql-dev2dev
_______________________________________________
E1000-devel mailing list
E1000-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/e1000-devel
To learn more about Intel® Ethernet, visit http://communities.intel.com/community/wired
^ permalink raw reply related [flat|nested] 25+ messages in thread
* Re: [PATCH 13/44] drivers/net/e1000e: Remove unnecessary semicolons
2010-11-15 3:04 ` [PATCH 13/44] drivers/net/e1000e: " Joe Perches
@ 2010-11-15 19:08 ` David Miller
0 siblings, 0 replies; 25+ messages in thread
From: David Miller @ 2010-11-15 19:08 UTC (permalink / raw)
To: joe
Cc: trivial, e1000-devel, bruce.w.allan, jesse.brandeburg,
linux-kernel, gregory.v.rose, john.ronciak, jeffrey.t.kirsher,
netdev
From: Joe Perches <joe@perches.com>
Date: Sun, 14 Nov 2010 19:04:32 -0800
> Signed-off-by: Joe Perches <joe@perches.com>
Applied.
------------------------------------------------------------------------------
Centralized Desktop Delivery: Dell and VMware Reference Architecture
Simplifying enterprise desktop deployment and management using
Dell EqualLogic storage and VMware View: A highly scalable, end-to-end
client virtualization framework. Read more!
http://p.sf.net/sfu/dell-eql-dev2dev
_______________________________________________
E1000-devel mailing list
E1000-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/e1000-devel
To learn more about Intel® Ethernet, visit http://communities.intel.com/community/wired
^ permalink raw reply [flat|nested] 25+ messages in thread
* [PATCH 14/44] drivers/net/ixgbe: Remove unnecessary semicolons
2010-11-15 3:04 [PATCH 00/44] remove unnecessary semicolons Joe Perches
` (2 preceding siblings ...)
2010-11-15 3:04 ` [PATCH 13/44] drivers/net/e1000e: " Joe Perches
@ 2010-11-15 3:04 ` Joe Perches
2010-11-15 16:24 ` Rose, Gregory V
2010-11-15 19:08 ` David Miller
2010-11-15 3:04 ` [PATCH 15/44] drivers/net/vxge: " Joe Perches
` (8 subsequent siblings)
12 siblings, 2 replies; 25+ messages in thread
From: Joe Perches @ 2010-11-15 3:04 UTC (permalink / raw)
To: Jiri Kosina
Cc: e1000-devel, Bruce Allan, Jesse Brandeburg, linux-kernel,
Greg Rose, John Ronciak, Jeff Kirsher, netdev
Signed-off-by: Joe Perches <joe@perches.com>
---
drivers/net/ixgbe/ixgbe_sriov.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/net/ixgbe/ixgbe_sriov.c b/drivers/net/ixgbe/ixgbe_sriov.c
index 5428153..93f40bc 100644
--- a/drivers/net/ixgbe/ixgbe_sriov.c
+++ b/drivers/net/ixgbe/ixgbe_sriov.c
@@ -68,7 +68,7 @@ static int ixgbe_set_vf_multicasts(struct ixgbe_adapter *adapter,
* addresses
*/
for (i = 0; i < entries; i++) {
- vfinfo->vf_mc_hashes[i] = hash_list[i];;
+ vfinfo->vf_mc_hashes[i] = hash_list[i];
}
for (i = 0; i < vfinfo->num_vf_mc_hashes; i++) {
--
1.7.3.1.g432b3.dirty
------------------------------------------------------------------------------
Centralized Desktop Delivery: Dell and VMware Reference Architecture
Simplifying enterprise desktop deployment and management using
Dell EqualLogic storage and VMware View: A highly scalable, end-to-end
client virtualization framework. Read more!
http://p.sf.net/sfu/dell-eql-dev2dev
_______________________________________________
E1000-devel mailing list
E1000-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/e1000-devel
To learn more about Intel® Ethernet, visit http://communities.intel.com/community/wired
^ permalink raw reply related [flat|nested] 25+ messages in thread
* Re: [PATCH 14/44] drivers/net/ixgbe: Remove unnecessary semicolons
2010-11-15 3:04 ` [PATCH 14/44] drivers/net/ixgbe: " Joe Perches
@ 2010-11-15 16:24 ` Rose, Gregory V
2010-11-15 19:08 ` David Miller
1 sibling, 0 replies; 25+ messages in thread
From: Rose, Gregory V @ 2010-11-15 16:24 UTC (permalink / raw)
To: Joe Perches, Jiri Kosina
Cc: e1000-devel@lists.sourceforge.net, Allan, Bruce W,
Brandeburg, Jesse, linux-kernel@vger.kernel.org, Ronciak, John,
Kirsher, Jeffrey T, netdev@vger.kernel.org
> -----Original Message-----
> From: Joe Perches [mailto:joe@perches.com]
> Sent: Sunday, November 14, 2010 7:05 PM
> To: Jiri Kosina
> Cc: Kirsher, Jeffrey T; Brandeburg, Jesse; Allan, Bruce W; Wyborny,
> Carolyn; Skidmore, Donald C; Rose, Gregory V; Waskiewicz Jr, Peter P;
> Duyck, Alexander H; Ronciak, John; e1000-devel@lists.sourceforge.net;
> netdev@vger.kernel.org; linux-kernel@vger.kernel.org
> Subject: [PATCH 14/44] drivers/net/ixgbe: Remove unnecessary semicolons
>
> Signed-off-by: Joe Perches <joe@perches.com>
> ---
> drivers/net/ixgbe/ixgbe_sriov.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/net/ixgbe/ixgbe_sriov.c
> b/drivers/net/ixgbe/ixgbe_sriov.c
> index 5428153..93f40bc 100644
> --- a/drivers/net/ixgbe/ixgbe_sriov.c
> +++ b/drivers/net/ixgbe/ixgbe_sriov.c
> @@ -68,7 +68,7 @@ static int ixgbe_set_vf_multicasts(struct ixgbe_adapter
> *adapter,
> * addresses
> */
> for (i = 0; i < entries; i++) {
> - vfinfo->vf_mc_hashes[i] = hash_list[i];;
> + vfinfo->vf_mc_hashes[i] = hash_list[i];
> }
>
> for (i = 0; i < vfinfo->num_vf_mc_hashes; i++) {
> --
> 1.7.3.1.g432b3.dirty
Acked By: Greg Rose <Gregory.v.rose@intel.com>
------------------------------------------------------------------------------
Centralized Desktop Delivery: Dell and VMware Reference Architecture
Simplifying enterprise desktop deployment and management using
Dell EqualLogic storage and VMware View: A highly scalable, end-to-end
client virtualization framework. Read more!
http://p.sf.net/sfu/dell-eql-dev2dev
_______________________________________________
E1000-devel mailing list
E1000-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/e1000-devel
To learn more about Intel® Ethernet, visit http://communities.intel.com/community/wired
^ permalink raw reply [flat|nested] 25+ messages in thread
* Re: [PATCH 14/44] drivers/net/ixgbe: Remove unnecessary semicolons
2010-11-15 3:04 ` [PATCH 14/44] drivers/net/ixgbe: " Joe Perches
2010-11-15 16:24 ` Rose, Gregory V
@ 2010-11-15 19:08 ` David Miller
1 sibling, 0 replies; 25+ messages in thread
From: David Miller @ 2010-11-15 19:08 UTC (permalink / raw)
To: joe
Cc: trivial, e1000-devel, bruce.w.allan, jesse.brandeburg,
linux-kernel, gregory.v.rose, john.ronciak, jeffrey.t.kirsher,
netdev
From: Joe Perches <joe@perches.com>
Date: Sun, 14 Nov 2010 19:04:33 -0800
> Signed-off-by: Joe Perches <joe@perches.com>
Applied.
------------------------------------------------------------------------------
Centralized Desktop Delivery: Dell and VMware Reference Architecture
Simplifying enterprise desktop deployment and management using
Dell EqualLogic storage and VMware View: A highly scalable, end-to-end
client virtualization framework. Read more!
http://p.sf.net/sfu/dell-eql-dev2dev
_______________________________________________
E1000-devel mailing list
E1000-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/e1000-devel
To learn more about Intel® Ethernet, visit http://communities.intel.com/community/wired
^ permalink raw reply [flat|nested] 25+ messages in thread
* [PATCH 15/44] drivers/net/vxge: Remove unnecessary semicolons
2010-11-15 3:04 [PATCH 00/44] remove unnecessary semicolons Joe Perches
` (3 preceding siblings ...)
2010-11-15 3:04 ` [PATCH 14/44] drivers/net/ixgbe: " Joe Perches
@ 2010-11-15 3:04 ` Joe Perches
2010-11-15 19:07 ` David Miller
2010-11-15 3:04 ` [PATCH 16/44] drivers/net/wireless/ath: " Joe Perches
` (7 subsequent siblings)
12 siblings, 1 reply; 25+ messages in thread
From: Joe Perches @ 2010-11-15 3:04 UTC (permalink / raw)
To: Jiri Kosina
Cc: Ramkrishna Vepa, Sivakumar Subramani, Sreenivasa Honnur,
Jon Mason, netdev, linux-kernel
Signed-off-by: Joe Perches <joe@perches.com>
---
drivers/net/vxge/vxge-main.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/net/vxge/vxge-main.c b/drivers/net/vxge/vxge-main.c
index 813829f..93e80c5 100644
--- a/drivers/net/vxge/vxge-main.c
+++ b/drivers/net/vxge/vxge-main.c
@@ -2062,7 +2062,7 @@ static irqreturn_t vxge_isr_napi(int irq, void *dev_id)
struct __vxge_hw_device *hldev;
u64 reason;
enum vxge_hw_status status;
- struct vxgedev *vdev = (struct vxgedev *) dev_id;;
+ struct vxgedev *vdev = (struct vxgedev *)dev_id;
vxge_debug_intr(VXGE_TRACE, "%s:%d", __func__, __LINE__);
--
1.7.3.1.g432b3.dirty
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [PATCH 16/44] drivers/net/wireless/ath: Remove unnecessary semicolons
2010-11-15 3:04 [PATCH 00/44] remove unnecessary semicolons Joe Perches
` (4 preceding siblings ...)
2010-11-15 3:04 ` [PATCH 15/44] drivers/net/vxge: " Joe Perches
@ 2010-11-15 3:04 ` Joe Perches
2010-11-15 3:04 ` [PATCH 17/44] drivers/net/wireless/iwlwifi: " Joe Perches
` (6 subsequent siblings)
12 siblings, 0 replies; 25+ messages in thread
From: Joe Perches @ 2010-11-15 3:04 UTC (permalink / raw)
To: Jiri Kosina
Cc: Luis R. Rodriguez, Jouni Malinen, Vasanthakumar Thiagarajan,
Senthil Balasubramanian, John W. Linville, linux-wireless,
ath9k-devel, netdev, linux-kernel
Signed-off-by: Joe Perches <joe@perches.com>
---
drivers/net/wireless/ath/ath9k/htc.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/net/wireless/ath/ath9k/htc.h b/drivers/net/wireless/ath/ath9k/htc.h
index 75ecf6a..4c98b93 100644
--- a/drivers/net/wireless/ath/ath9k/htc.h
+++ b/drivers/net/wireless/ath/ath9k/htc.h
@@ -434,7 +434,7 @@ void ath9k_htc_beaconep(void *drv_priv, struct sk_buff *skb,
void ath9k_htc_station_work(struct work_struct *work);
void ath9k_htc_aggr_work(struct work_struct *work);
-void ath9k_ani_work(struct work_struct *work);;
+void ath9k_ani_work(struct work_struct *work);
int ath9k_tx_init(struct ath9k_htc_priv *priv);
void ath9k_tx_tasklet(unsigned long data);
--
1.7.3.1.g432b3.dirty
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [PATCH 17/44] drivers/net/wireless/iwlwifi: Remove unnecessary semicolons
2010-11-15 3:04 [PATCH 00/44] remove unnecessary semicolons Joe Perches
` (5 preceding siblings ...)
2010-11-15 3:04 ` [PATCH 16/44] drivers/net/wireless/ath: " Joe Perches
@ 2010-11-15 3:04 ` Joe Perches
2010-11-15 3:04 ` [PATCH 18/44] drivers/net/cnic.c: " Joe Perches
` (5 subsequent siblings)
12 siblings, 0 replies; 25+ messages in thread
From: Joe Perches @ 2010-11-15 3:04 UTC (permalink / raw)
To: Jiri Kosina
Cc: Reinette Chatre, Wey-Yi Guy, Intel Linux Wireless,
John W. Linville, linux-wireless, netdev, linux-kernel
Signed-off-by: Joe Perches <joe@perches.com>
---
drivers/net/wireless/iwlwifi/iwl-agn.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/net/wireless/iwlwifi/iwl-agn.c b/drivers/net/wireless/iwlwifi/iwl-agn.c
index c2636a7..f293fb6 100644
--- a/drivers/net/wireless/iwlwifi/iwl-agn.c
+++ b/drivers/net/wireless/iwlwifi/iwl-agn.c
@@ -2420,7 +2420,7 @@ static const char *desc_lookup(u32 num)
max = ARRAY_SIZE(advanced_lookup) - 1;
for (i = 0; i < max; i++) {
if (advanced_lookup[i].num == num)
- break;;
+ break;
}
return advanced_lookup[i].name;
}
--
1.7.3.1.g432b3.dirty
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [PATCH 18/44] drivers/net/cnic.c: Remove unnecessary semicolons
2010-11-15 3:04 [PATCH 00/44] remove unnecessary semicolons Joe Perches
` (6 preceding siblings ...)
2010-11-15 3:04 ` [PATCH 17/44] drivers/net/wireless/iwlwifi: " Joe Perches
@ 2010-11-15 3:04 ` Joe Perches
2010-11-15 19:08 ` David Miller
2010-11-15 3:04 ` [PATCH 38/44] include/linux/if_macvlan.h: " Joe Perches
` (4 subsequent siblings)
12 siblings, 1 reply; 25+ messages in thread
From: Joe Perches @ 2010-11-15 3:04 UTC (permalink / raw)
To: Jiri Kosina; +Cc: netdev, linux-kernel
Signed-off-by: Joe Perches <joe@perches.com>
---
drivers/net/cnic.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/net/cnic.c b/drivers/net/cnic.c
index 92bac19..594ca9c 100644
--- a/drivers/net/cnic.c
+++ b/drivers/net/cnic.c
@@ -1695,7 +1695,7 @@ static int cnic_bnx2x_iscsi_ofld1(struct cnic_dev *dev, struct kwqe *wqes[],
*work = num;
return -EINVAL;
}
- *work = 2 + req2->num_additional_wqes;;
+ *work = 2 + req2->num_additional_wqes;
l5_cid = req1->iscsi_conn_id;
if (l5_cid >= MAX_ISCSI_TBL_SZ)
--
1.7.3.1.g432b3.dirty
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [PATCH 38/44] include/linux/if_macvlan.h: Remove unnecessary semicolons
2010-11-15 3:04 [PATCH 00/44] remove unnecessary semicolons Joe Perches
` (7 preceding siblings ...)
2010-11-15 3:04 ` [PATCH 18/44] drivers/net/cnic.c: " Joe Perches
@ 2010-11-15 3:04 ` Joe Perches
2010-11-15 19:07 ` David Miller
2010-11-15 3:04 ` [PATCH 39/44] include/net/caif/cfctrl.h: " Joe Perches
` (3 subsequent siblings)
12 siblings, 1 reply; 25+ messages in thread
From: Joe Perches @ 2010-11-15 3:04 UTC (permalink / raw)
To: Jiri Kosina; +Cc: Patrick McHardy, netdev, linux-kernel
Signed-off-by: Joe Perches <joe@perches.com>
---
include/linux/if_macvlan.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/linux/if_macvlan.h b/include/linux/if_macvlan.h
index 8a2fd66..ac96a2d 100644
--- a/include/linux/if_macvlan.h
+++ b/include/linux/if_macvlan.h
@@ -69,7 +69,7 @@ static inline void macvlan_count_rx(const struct macvlan_dev *vlan,
rx_stats = this_cpu_ptr(vlan->rx_stats);
if (likely(success)) {
u64_stats_update_begin(&rx_stats->syncp);
- rx_stats->rx_packets++;;
+ rx_stats->rx_packets++;
rx_stats->rx_bytes += len;
if (multicast)
rx_stats->rx_multicast++;
--
1.7.3.1.g432b3.dirty
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [PATCH 39/44] include/net/caif/cfctrl.h: Remove unnecessary semicolons
2010-11-15 3:04 [PATCH 00/44] remove unnecessary semicolons Joe Perches
` (8 preceding siblings ...)
2010-11-15 3:04 ` [PATCH 38/44] include/linux/if_macvlan.h: " Joe Perches
@ 2010-11-15 3:04 ` Joe Perches
2010-11-15 7:12 ` Sjur BRENDELAND
2010-11-15 19:07 ` David Miller
2010-11-15 3:05 ` [PATCH 41/44] net/ipv6/mcast.c: " Joe Perches
` (2 subsequent siblings)
12 siblings, 2 replies; 25+ messages in thread
From: Joe Perches @ 2010-11-15 3:04 UTC (permalink / raw)
To: Jiri Kosina; +Cc: Sjur Braendeland, David S. Miller, netdev, linux-kernel
Signed-off-by: Joe Perches <joe@perches.com>
---
include/net/caif/cfctrl.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/net/caif/cfctrl.h b/include/net/caif/cfctrl.h
index 9402543..e54f639 100644
--- a/include/net/caif/cfctrl.h
+++ b/include/net/caif/cfctrl.h
@@ -51,7 +51,7 @@ struct cfctrl_rsp {
void (*restart_rsp)(void);
void (*radioset_rsp)(void);
void (*reject_rsp)(struct cflayer *layer, u8 linkid,
- struct cflayer *client_layer);;
+ struct cflayer *client_layer);
};
/* Link Setup Parameters for CAIF-Links. */
--
1.7.3.1.g432b3.dirty
^ permalink raw reply related [flat|nested] 25+ messages in thread
* [PATCH 41/44] net/ipv6/mcast.c: Remove unnecessary semicolons
2010-11-15 3:04 [PATCH 00/44] remove unnecessary semicolons Joe Perches
` (9 preceding siblings ...)
2010-11-15 3:04 ` [PATCH 39/44] include/net/caif/cfctrl.h: " Joe Perches
@ 2010-11-15 3:05 ` Joe Perches
2010-11-15 19:07 ` David Miller
[not found] ` <cover.1289789604.git.joe-6d6DIl74uiNBDgjK7y7TUQ@public.gmane.org>
[not found] ` <ea09773876fb36a52a9a750110b381d20767ac12.1289789605.git.joe@perches.com>
12 siblings, 1 reply; 25+ messages in thread
From: Joe Perches @ 2010-11-15 3:05 UTC (permalink / raw)
To: Jiri Kosina
Cc: David S. Miller, Alexey Kuznetsov, Pekka Savola (ipv6),
James Morris, Hideaki YOSHIFUJI, Patrick McHardy, netdev,
linux-kernel
Signed-off-by: Joe Perches <joe@perches.com>
---
net/ipv6/mcast.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/net/ipv6/mcast.c b/net/ipv6/mcast.c
index d1444b9..9c50745 100644
--- a/net/ipv6/mcast.c
+++ b/net/ipv6/mcast.c
@@ -257,7 +257,7 @@ static struct inet6_dev *ip6_mc_find_dev_rcu(struct net *net,
return NULL;
idev = __in6_dev_get(dev);
if (!idev)
- return NULL;;
+ return NULL;
read_lock_bh(&idev->lock);
if (idev->dead) {
read_unlock_bh(&idev->lock);
--
1.7.3.1.g432b3.dirty
^ permalink raw reply related [flat|nested] 25+ messages in thread
[parent not found: <cover.1289789604.git.joe-6d6DIl74uiNBDgjK7y7TUQ@public.gmane.org>]
* [PATCH 42/44] net/sunrpc/addr.c: Remove unnecessary semicolons
[not found] ` <cover.1289789604.git.joe-6d6DIl74uiNBDgjK7y7TUQ@public.gmane.org>
@ 2010-11-15 3:05 ` Joe Perches
0 siblings, 0 replies; 25+ messages in thread
From: Joe Perches @ 2010-11-15 3:05 UTC (permalink / raw)
To: Jiri Kosina
Cc: J. Bruce Fields, Neil Brown, Trond Myklebust, David S. Miller,
linux-nfs-u79uwXL29TY76Z2rM5mHXA, netdev-u79uwXL29TY76Z2rM5mHXA,
linux-kernel-u79uwXL29TY76Z2rM5mHXA
Signed-off-by: Joe Perches <joe-6d6DIl74uiNBDgjK7y7TUQ@public.gmane.org>
---
net/sunrpc/addr.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/net/sunrpc/addr.c b/net/sunrpc/addr.c
index 1419d0c..4195233 100644
--- a/net/sunrpc/addr.c
+++ b/net/sunrpc/addr.c
@@ -151,7 +151,7 @@ static size_t rpc_pton4(const char *buf, const size_t buflen,
return 0;
sin->sin_family = AF_INET;
- return sizeof(struct sockaddr_in);;
+ return sizeof(struct sockaddr_in);
}
#if defined(CONFIG_IPV6) || defined(CONFIG_IPV6_MODULE)
--
1.7.3.1.g432b3.dirty
--
To unsubscribe from this list: send the line "unsubscribe linux-nfs" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 25+ messages in thread
[parent not found: <ea09773876fb36a52a9a750110b381d20767ac12.1289789605.git.joe@perches.com>]