Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 134622
b: refs/heads/master
c: b9da9e9
h: refs/heads/master
v: v3
  • Loading branch information
Hannes Eder authored and David S. Miller committed Feb 18, 2009
1 parent e2eb0ad commit d1de3f3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: fc68ed4fd7fdfafbefb270cf44194096156c7943
refs/heads/master: b9da9e9544724ee25af493bf117e2a8413be34a8
9 changes: 5 additions & 4 deletions trunk/drivers/net/wireless/ipw2x00/ipw2100.c
Original file line number Diff line number Diff line change
Expand Up @@ -1910,7 +1910,8 @@ static void isr_indicate_associated(struct ipw2100_priv *priv, u32 status)
{

#define MAC_ASSOCIATION_READ_DELAY (HZ)
int ret, len, essid_len;
int ret;
unsigned int len, essid_len;
char essid[IW_ESSID_MAX_SIZE];
u32 txrate;
u32 chan;
Expand Down Expand Up @@ -4058,7 +4059,7 @@ static ssize_t show_bssinfo(struct device *d, struct device_attribute *attr,
u8 bssid[ETH_ALEN];
u32 chan = 0;
char *out = buf;
int length;
unsigned int length;
int ret;

if (priv->status & STATUS_RF_KILL_MASK)
Expand Down Expand Up @@ -7122,7 +7123,7 @@ static int ipw2100_wx_get_rate(struct net_device *dev,
{
struct ipw2100_priv *priv = ieee80211_priv(dev);
int val;
int len = sizeof(val);
unsigned int len = sizeof(val);
int err = 0;

if (!(priv->status & STATUS_ENABLED) ||
Expand Down Expand Up @@ -8297,7 +8298,7 @@ static void ipw2100_wx_event_work(struct work_struct *work)
struct ipw2100_priv *priv =
container_of(work, struct ipw2100_priv, wx_event_work.work);
union iwreq_data wrqu;
int len = ETH_ALEN;
unsigned int len = ETH_ALEN;

if (priv->status & STATUS_STOPPING)
return;
Expand Down

0 comments on commit d1de3f3

Please sign in to comment.