Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: chromeos/compat-wireless/net/bluetooth/af_bluetooth.c

Issue 5326002: Update compat-wireless to 2.6.36-5-spn (Closed) Base URL: http://git.chromium.org/git/kernel.git@master
Patch Set: Fixes for !ACK handling, missing local changes, log message fixes Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chromeos/compat-wireless/net/bluetooth/af_bluetooth.c
diff --git a/chromeos/compat-wireless/net/bluetooth/af_bluetooth.c b/chromeos/compat-wireless/net/bluetooth/af_bluetooth.c
index 50d6ae1d8008a796521dde26f84b3e0cd5897b9f..2fe23de24f78691fab00f0e7a0bbdc9a5e2c5e79 100644
--- a/chromeos/compat-wireless/net/bluetooth/af_bluetooth.c
+++ b/chromeos/compat-wireless/net/bluetooth/af_bluetooth.c
@@ -268,7 +268,7 @@ int bt_sock_recvmsg(struct kiocb *iocb, struct socket *sock,
#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,32))
sock_recv_ts_and_drops(msg, sk, skb);
#else
- sock_recv_timestamp(msg, sk, skb);
+ sock_recv_timestamp(msg, sk, skb);
#endif
skb_free_datagram(sk, skb);
@@ -352,7 +352,7 @@ int bt_sock_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
#if (LINUX_VERSION_CODE > KERNEL_VERSION(2,6,31))
amount = sk->sk_sndbuf - sk_wmem_alloc_get(sk);
#else
- amount = sk->sk_sndbuf - atomic_read(&sk->sk_wmem_alloc);
+ amount = sk->sk_sndbuf - atomic_read(&sk->sk_wmem_alloc);
#endif
if (amount < 0)
amount = 0;

Powered by Google App Engine
This is Rietveld 408576698