diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2005-10-28 21:20:48 +0400 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2005-10-28 21:20:48 +0400 |
commit | 6516455d3b42b33759a33a8102c1b8b48af4d9c9 (patch) | |
tree | e7395ebcfa68c4a5aa25d80e4b279313f3fdea3e /net/bluetooth/hci_core.c | |
parent | 0372a6627f862f90a2c43772befeecef508cfd7b (diff) | |
download | linux-6516455d3b42b33759a33a8102c1b8b48af4d9c9.tar.xz |
[Bluetooth] Make more functions static
This patch makes another bunch of functions static.
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth/hci_core.c')
-rw-r--r-- | net/bluetooth/hci_core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/bluetooth/hci_core.c b/net/bluetooth/hci_core.c index 55dc42eac92c..cf0df1c8c933 100644 --- a/net/bluetooth/hci_core.c +++ b/net/bluetooth/hci_core.c @@ -87,7 +87,7 @@ int hci_unregister_notifier(struct notifier_block *nb) return notifier_chain_unregister(&hci_notifier, nb); } -void hci_notify(struct hci_dev *hdev, int event) +static void hci_notify(struct hci_dev *hdev, int event) { notifier_call_chain(&hci_notifier, event, hdev); } @@ -1347,7 +1347,7 @@ static inline void hci_scodata_packet(struct hci_dev *hdev, struct sk_buff *skb) kfree_skb(skb); } -void hci_rx_task(unsigned long arg) +static void hci_rx_task(unsigned long arg) { struct hci_dev *hdev = (struct hci_dev *) arg; struct sk_buff *skb; |