diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2011-10-31 20:13:00 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-10-31 20:30:57 -0400 |
commit | 67220a9ea3eb9cf61de7e384b6bcaaa78f680c9d (patch) | |
tree | 9aa6610fe95cb54138b5994d9b36cb2a150082d8 /drivers/net | |
parent | 0a90e0f1012e576500b551455b046013324826b9 (diff) |
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>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/wireless/at76c50x-usb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/at76c50x-usb.c b/drivers/net/wireless/at76c50x-usb.c index 39322d4121b7..4045e5ab0555 100644 --- a/drivers/net/wireless/at76c50x-usb.c +++ b/drivers/net/wireless/at76c50x-usb.c | |||
@@ -517,7 +517,7 @@ static char *hex2str(void *buf, size_t len) | |||
517 | goto exit; | 517 | goto exit; |
518 | 518 | ||
519 | while (len--) { | 519 | while (len--) { |
520 | obuf = pack_hex_byte(obuf, *ibuf++); | 520 | obuf = hex_byte_pack(obuf, *ibuf++); |
521 | *obuf++ = '-'; | 521 | *obuf++ = '-'; |
522 | } | 522 | } |
523 | obuf--; | 523 | obuf--; |