diff options
| author | Andrei Emeltchenko <andrei.emeltchenko@intel.com> | 2012-09-25 12:49:46 +0300 | 
|---|---|---|
| committer | Gustavo Padovan <gustavo.padovan@collabora.co.uk> | 2012-09-27 18:10:43 -0300 | 
| commit | d945df256a7b2446227fafae2f89db85597412ef (patch) | |
| tree | 261fe4fff142c9a7e7e270dfba21a8ab51a10dd4 /net/bluetooth/lib.c | |
| parent | 7028a8860f07d0efc5fdd7527fec065b818d108b (diff) | |
| download | olio-linux-3.10-d945df256a7b2446227fafae2f89db85597412ef.tar.xz olio-linux-3.10-d945df256a7b2446227fafae2f89db85597412ef.zip  | |
bluetooth: Remove unneeded batostr function
batostr is not needed anymore since for printing Bluetooth
addresses we use %pMR specifier.
Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
Diffstat (limited to 'net/bluetooth/lib.c')
| -rw-r--r-- | net/bluetooth/lib.c | 14 | 
1 files changed, 0 insertions, 14 deletions
diff --git a/net/bluetooth/lib.c b/net/bluetooth/lib.c index e1c97527e16..b3fbc73516c 100644 --- a/net/bluetooth/lib.c +++ b/net/bluetooth/lib.c @@ -41,20 +41,6 @@ void baswap(bdaddr_t *dst, bdaddr_t *src)  }  EXPORT_SYMBOL(baswap); -char *batostr(bdaddr_t *ba) -{ -	static char str[2][18]; -	static int i = 1; - -	i ^= 1; -	sprintf(str[i], "%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X", -		ba->b[5], ba->b[4], ba->b[3], -		ba->b[2], ba->b[1], ba->b[0]); - -	return str[i]; -} -EXPORT_SYMBOL(batostr); -  /* Bluetooth error codes to Unix errno mapping */  int bt_to_errno(__u16 code)  {  |