diff options
author | David S. Miller <davem@davemloft.net> | 2017-09-03 21:27:55 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-09-03 21:27:55 -0700 |
commit | 45865dabb14cee3be334c1376d69e959a62af561 (patch) | |
tree | 8393f518846dd2470aa28b24e6c54c90f6104bd6 /include/net | |
parent | f98ce38927d53e84960fbc5f7789d5ad6126b076 (diff) | |
parent | 65bce46298d064dff9db1282e17bb26602715819 (diff) | |
download | op-kernel-dev-45865dabb14cee3be334c1376d69e959a62af561.zip op-kernel-dev-45865dabb14cee3be334c1376d69e959a62af561.tar.gz |
Merge branch 'for-upstream' of git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next
Johan Hedberg says:
====================
pull request: bluetooth-next 2017-09-03
Here's one last bluetooth-next pull request for the 4.14 kernel:
- NULL pointer fix in ca8210 802.15.4 driver
- A few "const" fixes
- New Kconfig option for disabling legacy interfaces
Please let me know if there are any issues pulling. Thanks.
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/bluetooth/bluetooth.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/bluetooth/bluetooth.h b/include/net/bluetooth/bluetooth.h index 0148719..020142b 100644 --- a/include/net/bluetooth/bluetooth.h +++ b/include/net/bluetooth/bluetooth.h @@ -233,7 +233,7 @@ static inline void bacpy(bdaddr_t *dst, const bdaddr_t *src) memcpy(dst, src, sizeof(bdaddr_t)); } -void baswap(bdaddr_t *dst, bdaddr_t *src); +void baswap(bdaddr_t *dst, const bdaddr_t *src); /* Common socket structures and functions */ |