Bluetooth: Make __next_ident function static.

The __next_ident function is a local function and so do not export it
and make it static.

Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
This commit is contained in:
Marcel Holtmann
2015-02-14 13:36:07 -08:00
committed by Johan Hedberg
parent bc333cc465
commit 87e2a020ca
2 changed files with 1 additions and 2 deletions

View File

@@ -69,7 +69,7 @@ static void a2mp_send(struct amp_mgr *mgr, u8 code, u8 ident, u16 len, void *dat
kfree(cmd);
}
u8 __next_ident(struct amp_mgr *mgr)
static u8 __next_ident(struct amp_mgr *mgr)
{
if (++mgr->ident == 0)
mgr->ident = 1;