diff options
| author | Marcel Holtmann <marcel@holtmann.org> | 2005-03-19 22:40:25 +0100 |
|---|---|---|
| committer | Marcel Holtmann <marcel@holtmann.org> | 2005-03-19 22:40:25 +0100 |
| commit | f74cc48ecb9e1fd3ab3d50215d6073065820f19a (patch) | |
| tree | 452c3f04bd3b1cb6d161bb924c2c2a1e5cfd4875 | |
| parent | 29e2fd304ee64244cf7dd2a64651745e8ee5c7dc (diff) | |
[Bluetooth] Make another variable static
This patch makes another needlessly global variable static.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
| -rw-r--r-- | net/bluetooth/rfcomm/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/rfcomm/core.c b/net/bluetooth/rfcomm/core.c index b5110b5fa408..e9e6fda66f1a 100644 --- a/net/bluetooth/rfcomm/core.c +++ b/net/bluetooth/rfcomm/core.c @@ -68,7 +68,7 @@ static DECLARE_MUTEX(rfcomm_sem); #define rfcomm_lock() down(&rfcomm_sem); #define rfcomm_unlock() up(&rfcomm_sem); -unsigned long rfcomm_event; +static unsigned long rfcomm_event; static LIST_HEAD(session_list); static atomic_t terminate, running; |
