diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2016-07-17 19:55:17 +0200 |
---|---|---|
committer | Johan Hedberg <johan.hedberg@intel.com> | 2016-07-18 09:33:56 +0300 |
commit | b2999c195bb5cec1a1c713f17c7f382bbcdb8b39 (patch) | |
tree | 3821ddc20ac0f1c5f32ec17ff81db3df36112fb6 /drivers/bluetooth/bpa10x.c | |
parent | 5177a83827cd0b8cf6ce0391b00dd4417352d2f1 (diff) |
Bluetooth: bpa10x: Add support for hci_set_fw_info
The Digianswer sniffer devices allow for reading a firmware specific
information string. If it is available, then inform the Bluetooth core
about it via hci_set_fw_info. That exposes it via debugfs like this:
# cat /sys/kernel/debug/bluetooth/hci0/firmware_info
SNIF_102,BB930,02/01/18,10:37:56
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'drivers/bluetooth/bpa10x.c')
-rw-r--r-- | drivers/bluetooth/bpa10x.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/bluetooth/bpa10x.c b/drivers/bluetooth/bpa10x.c index fd6b53e9bbf2..a9932fe57d92 100644 --- a/drivers/bluetooth/bpa10x.c +++ b/drivers/bluetooth/bpa10x.c @@ -274,6 +274,8 @@ static int bpa10x_setup(struct hci_dev *hdev) BT_INFO("%s: %s", hdev->name, (char *)(skb->data + 1)); + hci_set_fw_info(hdev, "%s", skb->data + 1); + kfree_skb(skb); return 0; } |