]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - kernel/kgdb.c
net/irda/irnet/irnet_irda.c needs unaligned.h
[linux-2.6-omap-h63xx.git] / kernel / kgdb.c
index 39e31a036f5b0e31bf6187df2751a589d409b328..14787de568b3c916320d06e5f73184e65966dfcc 100644 (file)
@@ -346,14 +346,6 @@ static void put_packet(char *buffer)
        }
 }
 
-static char *pack_hex_byte(char *pkt, u8 byte)
-{
-       *pkt++ = hexchars[byte >> 4];
-       *pkt++ = hexchars[byte & 0xf];
-
-       return pkt;
-}
-
 /*
  * Convert the memory pointed to by mem into hex, placing result in buf.
  * Return a pointer to the last char put in buf (null). May return an error.