Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
d2b77f3e
Commit
d2b77f3e
authored
Jan 13, 2005
by
David S. Miller
Browse files
Options
Browse Files
Download
Plain Diff
Merge
http://linux-mh.bkbits.net/bluetooth-2.6
into nuts.davemloft.net:/disk1/BK/net-2.6
parents
715ea19d
1a19f183
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
net/bluetooth/hci_core.c
net/bluetooth/hci_core.c
+3
-3
net/bluetooth/rfcomm/tty.c
net/bluetooth/rfcomm/tty.c
+1
-1
No files found.
net/bluetooth/hci_core.c
View file @
d2b77f3e
...
...
@@ -59,15 +59,15 @@ static void hci_rx_task(unsigned long arg);
static
void
hci_tx_task
(
unsigned
long
arg
);
static
void
hci_notify
(
struct
hci_dev
*
hdev
,
int
event
);
static
rwlock_t
hci_task_lock
=
RW_LOCK_UNLOCKED
;
static
DEFINE_RWLOCK
(
hci_task_lock
)
;
/* HCI device list */
LIST_HEAD
(
hci_dev_list
);
rwlock_t
hci_dev_list_lock
=
RW_LOCK_UNLOCKED
;
DEFINE_RWLOCK
(
hci_dev_list_lock
)
;
/* HCI callback list */
LIST_HEAD
(
hci_cb_list
);
rwlock_t
hci_cb_list_lock
=
RW_LOCK_UNLOCKED
;
DEFINE_RWLOCK
(
hci_cb_list_lock
)
;
/* HCI protocols */
#define HCI_MAX_PROTO 2
...
...
net/bluetooth/rfcomm/tty.c
View file @
d2b77f3e
...
...
@@ -77,7 +77,7 @@ struct rfcomm_dev {
};
static
LIST_HEAD
(
rfcomm_dev_list
);
static
rwlock_t
rfcomm_dev_lock
=
RW_LOCK_UNLOCKED
;
static
DEFINE_RWLOCK
(
rfcomm_dev_lock
)
;
static
void
rfcomm_dev_data_ready
(
struct
rfcomm_dlc
*
dlc
,
struct
sk_buff
*
skb
);
static
void
rfcomm_dev_state_change
(
struct
rfcomm_dlc
*
dlc
,
int
err
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment