]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
wireless: at76c50x: follow rename pack_hex_byte to hex_byte_pack
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Mon, 24 Oct 2011 14:58:59 +0000 (01:58 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Tue, 1 Nov 2011 08:41:34 +0000 (19:41 +1100)
There is no functional change.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: John W. Linville <linville@tuxdriver.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
drivers/net/wireless/at76c50x-usb.c

index 39322d4121b79f17e90ecd39491b666c28c7217a..4045e5ab0555a3cbd2f55b1aa0e413a137f6f7f0 100644 (file)
@@ -517,7 +517,7 @@ static char *hex2str(void *buf, size_t len)
                goto exit;
 
        while (len--) {
-               obuf = pack_hex_byte(obuf, *ibuf++);
+               obuf = hex_byte_pack(obuf, *ibuf++);
                *obuf++ = '-';
        }
        obuf--;