diff options
author | Marcel Holtmann | 2020-03-09 22:48:10 +0100 |
---|---|---|
committer | Johan Hedberg | 2020-03-11 10:05:58 +0200 |
commit | 00b383b8abd1207b2c86e09834ad1617f1dd0388 (patch) | |
tree | 7d5166a9765cf9c7d96fec70dc11bfd01c7fc987 /net/bluetooth | |
parent | 2a4f3909d0fbdac9352e35c6f6cfd81bb2101e50 (diff) |
Bluetooth: Use bt_dev_err for RPA generation failure message
When the RPA generation fails, indicate the error with a device specifc
error message.
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Diffstat (limited to 'net/bluetooth')
-rw-r--r-- | net/bluetooth/hci_request.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/hci_request.c b/net/bluetooth/hci_request.c index 2a1b64dbf76e..53179ae856ae 100644 --- a/net/bluetooth/hci_request.c +++ b/net/bluetooth/hci_request.c @@ -1499,7 +1499,7 @@ int hci_get_random_address(struct hci_dev *hdev, bool require_privacy, err = smp_generate_rpa(hdev, hdev->irk, &hdev->rpa); if (err < 0) { - BT_ERR("%s failed to generate new RPA", hdev->name); + bt_dev_err(hdev, "failed to generate new RPA"); return err; } |