net: use the common ascii hex helpers
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
697f8d0348
commit
6a8341b68b
@@ -19,6 +19,7 @@
|
||||
#include "h/smc.h"
|
||||
#include "h/smt_p.h"
|
||||
#include <linux/bitrev.h>
|
||||
#include <linux/kernel.h>
|
||||
|
||||
#define KERNEL
|
||||
#include "h/smtstate.h"
|
||||
@@ -1730,20 +1731,18 @@ void fddi_send_antc(struct s_smc *smc, struct fddi_addr *dest)
|
||||
#endif
|
||||
|
||||
#ifdef DEBUG
|
||||
#define hextoasc(x) "0123456789abcdef"[x]
|
||||
|
||||
char *addr_to_string(struct fddi_addr *addr)
|
||||
{
|
||||
int i ;
|
||||
static char string[6*3] = "****" ;
|
||||
|
||||
for (i = 0 ; i < 6 ; i++) {
|
||||
string[i*3] = hextoasc((addr->a[i]>>4)&0xf) ;
|
||||
string[i*3+1] = hextoasc((addr->a[i])&0xf) ;
|
||||
string[i*3+2] = ':' ;
|
||||
string[i * 3] = hex_asc_hi(addr->a[i]);
|
||||
string[i * 3 + 1] = hex_asc_lo(addr->a[i]);
|
||||
string[i * 3 + 2] = ':';
|
||||
}
|
||||
string[5*3+2] = 0 ;
|
||||
return(string) ;
|
||||
string[5 * 3 + 2] = 0;
|
||||
return(string);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user