Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 45865dab authored by David S. Miller's avatar David S. Miller
Browse files

Merge branch 'for-upstream' of...

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: default avatarDavid S. Miller <davem@davemloft.net>
parents f98ce389 65bce462
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -917,10 +917,7 @@ static int ca8210_spi_transfer(
	struct cas_control *cas_ctl;

	if (!spi) {
		dev_crit(
			&spi->dev,
			"NULL spi device passed to ca8210_spi_transfer\n"
		);
		pr_crit("NULL spi device passed to %s\n", __func__);
		return -ENODEV;
	}

+1 −1
Original line number Diff line number Diff line
@@ -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 */

+10 −0
Original line number Diff line number Diff line
@@ -126,4 +126,14 @@ config BT_DEBUGFS
	  Provide extensive information about internal Bluetooth states
	  in debugfs.

config BT_LEGACY_IOCTL
	bool "Enable legacy ioctl interfaces"
	depends on BT && BT_BREDR
	default y
	help
	  Enable support for legacy ioctl interfaces.  This is only needed
	  for old and deprecated applications using direct ioctl calls for
	  controller management.  Since Linux 3.4 all configuration and
	  setup is done via mgmt interface and this is no longer needed.

source "drivers/bluetooth/Kconfig"
+6 −0
Original line number Diff line number Diff line
@@ -878,6 +878,7 @@ static int hci_sock_release(struct socket *sock)
	return 0;
}

#ifdef CONFIG_BT_LEGACY_IOCTL
static int hci_sock_blacklist_add(struct hci_dev *hdev, void __user *arg)
{
	bdaddr_t bdaddr;
@@ -1049,6 +1050,7 @@ static int hci_sock_ioctl(struct socket *sock, unsigned int cmd,
	release_sock(sk);
	return err;
}
#endif

static int hci_sock_bind(struct socket *sock, struct sockaddr *addr,
			 int addr_len)
@@ -1969,7 +1971,11 @@ static const struct proto_ops hci_sock_ops = {
	.getname	= hci_sock_getname,
	.sendmsg	= hci_sock_sendmsg,
	.recvmsg	= hci_sock_recvmsg,
#ifdef CONFIG_BT_LEGACY_IOCTL
	.ioctl		= hci_sock_ioctl,
#else
	.ioctl		= sock_no_ioctl,
#endif
	.poll		= datagram_poll,
	.listen		= sock_no_listen,
	.shutdown	= sock_no_shutdown,
+2 −2
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ static void bt_link_release(struct device *dev)
	kfree(conn);
}

static struct device_type bt_link = {
static const struct device_type bt_link = {
	.name    = "link",
	.release = bt_link_release,
};
@@ -86,7 +86,7 @@ static void bt_host_release(struct device *dev)
	module_put(THIS_MODULE);
}

static struct device_type bt_host = {
static const struct device_type bt_host = {
	.name    = "host",
	.release = bt_host_release,
};
Loading