mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2025-01-18 09:34:47 +08:00
Replace bt_put_le32() by put_le32()
This commit is contained in:
parent
4a2eb105c3
commit
b62eb18e6c
@ -978,7 +978,7 @@ static void do_send(int sk)
|
||||
|
||||
seq = 0;
|
||||
while ((num_frames == -1) || (num_frames-- > 0)) {
|
||||
bt_put_le32(seq, buf);
|
||||
put_le32(seq, buf);
|
||||
put_le16(data_size, buf + 4);
|
||||
|
||||
seq++;
|
||||
|
@ -569,7 +569,7 @@ static void do_send(int sk)
|
||||
|
||||
seq = 0;
|
||||
while ((num_frames == -1) || (num_frames-- > 0)) {
|
||||
bt_put_le32(seq, buf);
|
||||
put_le32(seq, buf);
|
||||
put_le16(data_size, buf + 4);
|
||||
|
||||
seq++;
|
||||
|
@ -347,7 +347,7 @@ static void send_mode(char *svr)
|
||||
|
||||
seq = 0;
|
||||
while (1) {
|
||||
bt_put_le32(seq, buf);
|
||||
put_le32(seq, buf);
|
||||
put_le16(data_size, buf + 4);
|
||||
|
||||
seq++;
|
||||
|
Loading…
Reference in New Issue
Block a user