|
From: Peter K. <pk...@us...> - 2001-02-27 12:50:04
|
The following file was modified in linux/drivers/char/bluetooth:
Name Old version New version Comment
---- ----------- ----------- -------
bluetooth.c 1.123 1.124=20=20=20=20=20=20=20=20=20=20=20
The accompanying log:
Made psmname() static.
The diff of the modified file(s):
--- bluetooth.c 2001/02/16 14:21:40 1.123
+++ bluetooth.c 2001/02/27 12:51:12 1.124
@@ -165,6 +165,7 @@
static s32 bt_ctrl_init(void);
static s32 bt_connect(u8 *bd_addr, u32 con_id);
static s32 bt_disconnect(u32 con_id);
+static const u8* psmname(u16 psm);
=20
#ifdef __USE_OLD_SYMTAB__
/*
@@ -2044,7 +2045,6 @@
return pos;
}
=20
-
/*
* FIXME -- make this register function more general i.e
* enable registering any layer.=20
@@ -2258,7 +2258,8 @@
}
=20
=20
-const u8* psmname(u16 psm)
+static const u8*
+psmname(u16 psm)
{
switch(psm)
{
|