Skip to content

Commit

Permalink
wireless: at76c50x: follow rename pack_hex_byte to hex_byte_pack
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Andy Shevchenko authored and Linus Torvalds committed Nov 1, 2011
1 parent 0a90e0f commit 67220a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/net/wireless/at76c50x-usb.c
Original file line number Diff line number Diff line change
Expand Up @@ -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--;
Expand Down

0 comments on commit 67220a9

Please sign in to comment.