Commit d171dfb6 authored by Max Chou's avatar Max Chou Committed by Marcel Holtmann

Bluetooth: btrtl: Fix an issue for the incorrect error return code.

It does not need the '-' for PTR_ERR(skb) because PTR_ERR(skb) will
return the negative value during errors.
Signed-off-by: default avatarMax Chou <max.chou@realtek.com>
Signed-off-by: default avatarMarcel Holtmann <marcel@holtmann.org>
parent 088fc633
...@@ -418,7 +418,7 @@ static int rtl_download_firmware(struct hci_dev *hdev, ...@@ -418,7 +418,7 @@ static int rtl_download_firmware(struct hci_dev *hdev,
if (IS_ERR(skb)) { if (IS_ERR(skb)) {
rtl_dev_err(hdev, "download fw command failed (%ld)", rtl_dev_err(hdev, "download fw command failed (%ld)",
PTR_ERR(skb)); PTR_ERR(skb));
ret = -PTR_ERR(skb); ret = PTR_ERR(skb);
goto out; goto out;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment