Bluetooth: make baswap src const
Signed-off-by: Loic Poulain <loic.poulain@linaro.org> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
This commit is contained in:
parent
dbbccdc4ce
commit
65bce46298
|
@ -233,7 +233,7 @@ static inline void bacpy(bdaddr_t *dst, const bdaddr_t *src)
|
||||||
memcpy(dst, src, sizeof(bdaddr_t));
|
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 */
|
/* Common socket structures and functions */
|
||||||
|
|
||||||
|
|
|
@ -30,10 +30,10 @@
|
||||||
|
|
||||||
#include <net/bluetooth/bluetooth.h>
|
#include <net/bluetooth/bluetooth.h>
|
||||||
|
|
||||||
void baswap(bdaddr_t *dst, bdaddr_t *src)
|
void baswap(bdaddr_t *dst, const bdaddr_t *src)
|
||||||
{
|
{
|
||||||
unsigned char *d = (unsigned char *) dst;
|
const unsigned char *s = (const unsigned char *)src;
|
||||||
unsigned char *s = (unsigned char *) src;
|
unsigned char *d = (unsigned char *)dst;
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
|
|
||||||
for (i = 0; i < 6; i++)
|
for (i = 0; i < 6; i++)
|
||||||
|
|
Loading…
Reference in New Issue