Staging: rtl8192su: fix up printk warnings

This patch addresses printk warnings.

Signed-off-by: Jeff Mahoney <jeffm@suse.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Jeff Mahoney 2009-08-04 10:26:20 -04:00 committed by Greg Kroah-Hartman
parent b1af19f19d
commit 859ebd9748
2 changed files with 4 additions and 4 deletions

View file

@ -772,7 +772,7 @@ int ieee80211_wx_set_gen_ie(struct ieee80211_device *ieee, u8 *ie, size_t len)
{ {
if (len != ie[1]+2) if (len != ie[1]+2)
{ {
printk("len:%d, ie:%d\n", len, ie[1]); printk("len: %Zd, ie:%d\n", len, ie[1]);
return -EINVAL; return -EINVAL;
} }
buf = kmalloc(len, GFP_KERNEL); buf = kmalloc(len, GFP_KERNEL);

View file

@ -339,7 +339,7 @@ int ieee80211_rx_ADDBAReq( struct ieee80211_device* ieee, struct sk_buff *skb)
if (skb->len < sizeof( struct ieee80211_hdr_3addr) + 9) if (skb->len < sizeof( struct ieee80211_hdr_3addr) + 9)
{ {
IEEE80211_DEBUG(IEEE80211_DL_ERR, " Invalid skb len in BAREQ(%d / %d)\n", skb->len, (sizeof( struct ieee80211_hdr_3addr) + 9)); IEEE80211_DEBUG(IEEE80211_DL_ERR, " Invalid skb len in BAREQ(%d / %ld)\n", skb->len, (sizeof( struct ieee80211_hdr_3addr) + 9));
return -1; return -1;
} }
@ -440,7 +440,7 @@ int ieee80211_rx_ADDBARsp( struct ieee80211_device* ieee, struct sk_buff *skb)
if (skb->len < sizeof( struct ieee80211_hdr_3addr) + 9) if (skb->len < sizeof( struct ieee80211_hdr_3addr) + 9)
{ {
IEEE80211_DEBUG(IEEE80211_DL_ERR, " Invalid skb len in BARSP(%d / %d)\n", skb->len, (sizeof( struct ieee80211_hdr_3addr) + 9)); IEEE80211_DEBUG(IEEE80211_DL_ERR, " Invalid skb len in BARSP(%d / %ld)\n", skb->len, (sizeof( struct ieee80211_hdr_3addr) + 9));
return -1; return -1;
} }
rsp = ( struct ieee80211_hdr_3addr*)skb->data; rsp = ( struct ieee80211_hdr_3addr*)skb->data;
@ -570,7 +570,7 @@ int ieee80211_rx_DELBA(struct ieee80211_device* ieee,struct sk_buff *skb)
if (skb->len < sizeof( struct ieee80211_hdr_3addr) + 6) if (skb->len < sizeof( struct ieee80211_hdr_3addr) + 6)
{ {
IEEE80211_DEBUG(IEEE80211_DL_ERR, " Invalid skb len in DELBA(%d / %d)\n", skb->len, (sizeof( struct ieee80211_hdr_3addr) + 6)); IEEE80211_DEBUG(IEEE80211_DL_ERR, " Invalid skb len in DELBA(%d / %ld)\n", skb->len, (sizeof( struct ieee80211_hdr_3addr) + 6));
return -1; return -1;
} }