summaryrefslogtreecommitdiff
path: root/drivers/staging/rtl8187se/r8180_core.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2012-05-08 17:11:56 (GMT)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-05-09 20:52:23 (GMT)
commit14fc42355f10199f39bc38dd2d3e9288a31e770c (patch)
tree9e9c84d9f6046882c014a7ab1499cf08358de210 /drivers/staging/rtl8187se/r8180_core.c
parent82a74d4a8022fc01b99550e4cd6b90802acd4ef9 (diff)
downloadlinux-fsl-qoriq-14fc42355f10199f39bc38dd2d3e9288a31e770c.tar.xz
staging: Remove test of is_broadcast with is_multicast
A broadcast packet is a multicast packet, no need to test twice. Reorder one defective test in rtl_core of is_multi_ether_addr before is_broadcast_ether_addr as the is_multi returns true for broadcast frames. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/rtl8187se/r8180_core.c')
-rw-r--r--drivers/staging/rtl8187se/r8180_core.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/staging/rtl8187se/r8180_core.c b/drivers/staging/rtl8187se/r8180_core.c
index a513ec7..fd22b75 100644
--- a/drivers/staging/rtl8187se/r8180_core.c
+++ b/drivers/staging/rtl8187se/r8180_core.c
@@ -2003,8 +2003,7 @@ short rtl8180_tx(struct net_device *dev, u8* txbuf, int len, int priority,
}
memcpy(&dest, frag_hdr->addr1, ETH_ALEN);
- if (is_multicast_ether_addr(dest) ||
- is_broadcast_ether_addr(dest)) {
+ if (is_multicast_ether_addr(dest)) {
Duration = 0;
RtsDur = 0;
bRTSEnable = 0;