wireless: at76c50x: follow rename pack_hex_byte to hex_byte_pack

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>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Andy Shevchenko 2011-10-31 17:13:00 -07:00 committed by Linus Torvalds
parent 0a90e0f101
commit 67220a9ea3

View 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--;