summaryrefslogtreecommitdiffstats
path: root/drivers/staging/rtl8192e
diff options
context:
space:
mode:
authorLarry Finger <Larry.Finger@lwfinger.net>2011-08-01 15:53:53 -0500
committerLarry Finger <Larry.Finger@lwfinger.net>2011-08-25 00:41:28 -0500
commit81e3863636b2f963d32245ce6b23b37404d0cd39 (patch)
treef81f4f9a5a35ab8204c4def79625242d893d666e /drivers/staging/rtl8192e
parente829d65e7855fb4c98a81dd8c210c5b6d738bde1 (diff)
downloadop-kernel-dev-81e3863636b2f963d32245ce6b23b37404d0cd39.zip
op-kernel-dev-81e3863636b2f963d32245ce6b23b37404d0cd39.tar.gz
staging: rtl8192e: Remove extraneous log message
The driver logs all DHCP transactions and thus spams the logs. Signed-off-by: Larry Finger <Larry.Finger@lwfinger.net>
Diffstat (limited to 'drivers/staging/rtl8192e')
-rw-r--r--drivers/staging/rtl8192e/rtllib_tx.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/staging/rtl8192e/rtllib_tx.c b/drivers/staging/rtl8192e/rtllib_tx.c
index d03b5aa..7ccad86 100644
--- a/drivers/staging/rtl8192e/rtllib_tx.c
+++ b/drivers/staging/rtl8192e/rtllib_tx.c
@@ -632,15 +632,13 @@ int rtllib_xmit_inter(struct sk_buff *skb, struct net_device *dev)
goto success;
}
- if (skb->len > 282){
+ if (skb->len > 282) {
if (ETH_P_IP == ether_type) {
const struct iphdr *ip = (struct iphdr *)((u8 *)skb->data+14);
if (IPPROTO_UDP == ip->protocol) {
struct udphdr *udp = (struct udphdr *)((u8 *)ip + (ip->ihl << 2));
if (((((u8 *)udp)[1] == 68) && (((u8 *)udp)[3] == 67)) ||
((((u8 *)udp)[1] == 67) && (((u8 *)udp)[3] == 68))) {
- printk("DHCP pkt src port:%d, dest port:%d!!\n", ((u8 *)udp)[1],((u8 *)udp)[3]);
-
bdhcp = true;
ieee->LPSDelayCnt = 200;
}
OpenPOWER on IntegriCloud