Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 203692
b: refs/heads/master
c: 882d829
h: refs/heads/master
v: v3
  • Loading branch information
Andy Shevchenko authored and David S. Miller committed Jul 23, 2010
1 parent 42e5fd7 commit 395bb96
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 22 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: fd1f170dfc9d432061540422ddc97058154d94b9
refs/heads/master: 882d829a23756dd827d8ed30000f73f1b035ad29
23 changes: 2 additions & 21 deletions trunk/drivers/net/wireless/ray_cs.c
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,6 @@ static iw_stats *ray_get_wireless_stats(struct net_device *dev);
static const struct iw_handler_def ray_handler_def;

/***** Prototypes for raylink functions **************************************/
static int asc_to_int(char a);
static void authenticate(ray_dev_t *local);
static int build_auth_frame(ray_dev_t *local, UCHAR *dest, int auth_type);
static void authenticate_timeout(u_long);
Expand Down Expand Up @@ -1716,24 +1715,6 @@ static void authenticate_timeout(u_long data)
join_net((u_long) local);
}

/*===========================================================================*/
static int asc_to_int(char a)
{
if (a < '0')
return -1;
if (a <= '9')
return (a - '0');
if (a < 'A')
return -1;
if (a <= 'F')
return (10 + a - 'A');
if (a < 'a')
return -1;
if (a <= 'f')
return (10 + a - 'a');
return -1;
}

/*===========================================================================*/
static int parse_addr(char *in_str, UCHAR *out)
{
Expand All @@ -1754,14 +1735,14 @@ static int parse_addr(char *in_str, UCHAR *out)
i = 5;

while (j > 0) {
if ((k = asc_to_int(in_str[j--])) != -1)
if ((k = hex_to_bin(in_str[j--])) != -1)
out[i] = k;
else
return 0;

if (j == 0)
break;
if ((k = asc_to_int(in_str[j--])) != -1)
if ((k = hex_to_bin(in_str[j--])) != -1)
out[i] += k << 4;
else
return 0;
Expand Down

0 comments on commit 395bb96

Please sign in to comment.