]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
Bluetooth: amp: Use the correct print format
authorKai Ye <yekai13@huawei.com>
Thu, 3 Jun 2021 07:41:00 +0000 (15:41 +0800)
committerMarcel Holtmann <marcel@holtmann.org>
Sat, 26 Jun 2021 05:12:41 +0000 (07:12 +0200)
According to Documentation/core-api/printk-formats.rst,
Use the correct print format. Printing an unsigned int value should use %u
instead of %d. Otherwise printk() might end up displaying negative numbers.

Signed-off-by: Kai Ye <yekai13@huawei.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
net/bluetooth/amp.c

index be2d469d6369dc4091aa6d4ce18f9ddc9b8ca4d3..2134f92bd7ac21417af6fb8c9a5506205dc3274d 100644 (file)
@@ -78,7 +78,7 @@ struct amp_ctrl *amp_ctrl_lookup(struct amp_mgr *mgr, u8 id)
 {
        struct amp_ctrl *ctrl;
 
-       BT_DBG("mgr %p id %d", mgr, id);
+       BT_DBG("mgr %p id %u", mgr, id);
 
        mutex_lock(&mgr->amp_ctrls_lock);
        list_for_each_entry(ctrl, &mgr->amp_ctrls, list) {
@@ -179,7 +179,7 @@ int phylink_gen_key(struct hci_conn *conn, u8 *data, u8 *len, u8 *type)
 
        /* Legacy key */
        if (conn->key_type < 3) {
-               bt_dev_err(hdev, "legacy key type %d", conn->key_type);
+               bt_dev_err(hdev, "legacy key type %u", conn->key_type);
                return -EACCES;
        }
 
@@ -257,7 +257,7 @@ void amp_read_loc_assoc_frag(struct hci_dev *hdev, u8 phy_handle)
        struct hci_request req;
        int err;
 
-       BT_DBG("%s handle %d", hdev->name, phy_handle);
+       BT_DBG("%s handle %u", hdev->name, phy_handle);
 
        cp.phy_handle = phy_handle;
        cp.max_len = cpu_to_le16(hdev->amp_assoc_size);