diff options
author | Alain Michaud <alainm@chromium.org> | 2020-01-22 22:47:44 +0300 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2020-01-22 23:23:16 +0300 |
commit | 6613babaf662cfbd283fcd0abdd758e338dd181d (patch) | |
tree | d13502d0a484c638ee7306ccf0b4e283e620bea2 /net/bluetooth | |
parent | bdf2aca703e83eeecac2b492494687d5009a694e (diff) | |
download | linux-6613babaf662cfbd283fcd0abdd758e338dd181d.tar.xz |
Bluetooth: fix appearance typo in mgmt.c
This change addresses a typo in the set_appearance handler.
Signed-off-by: Alain Michaud <alainm@chromium.org>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth')
-rw-r--r-- | net/bluetooth/mgmt.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/bluetooth/mgmt.c b/net/bluetooth/mgmt.c index 3c68a366977f..3074363c68df 100644 --- a/net/bluetooth/mgmt.c +++ b/net/bluetooth/mgmt.c @@ -3291,7 +3291,7 @@ static int set_appearance(struct sock *sk, struct hci_dev *hdev, void *data, u16 len) { struct mgmt_cp_set_appearance *cp = data; - u16 apperance; + u16 appearance; int err; BT_DBG(""); @@ -3300,12 +3300,12 @@ static int set_appearance(struct sock *sk, struct hci_dev *hdev, void *data, return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_APPEARANCE, MGMT_STATUS_NOT_SUPPORTED); - apperance = le16_to_cpu(cp->appearance); + appearance = le16_to_cpu(cp->appearance); hci_dev_lock(hdev); - if (hdev->appearance != apperance) { - hdev->appearance = apperance; + if (hdev->appearance != appearance) { + hdev->appearance = appearance; if (hci_dev_test_flag(hdev, HCI_LE_ADV)) adv_expire(hdev, MGMT_ADV_FLAG_APPEARANCE); |