From: Colin Ian King Date: Mon, 7 Oct 2024 16:10:35 +0000 (+0100) Subject: Bluetooth: btintel_pcie: remove redundant assignment to variable ret X-Git-Tag: v6.13-rc1~135^2~36^2~24 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4900e041c3f05dac47c6bce0844203a0703baaa2;p=thirdparty%2Fkernel%2Flinux.git Bluetooth: btintel_pcie: remove redundant assignment to variable ret The variable ret is being assigned -ENOMEM however this is never read and it is being re-assigned a new value when the code jumps to label resubmit. The assignment is redundant and can be removed. Signed-off-by: Colin Ian King Signed-off-by: Luiz Augusto von Dentz --- diff --git a/drivers/bluetooth/btintel_pcie.c b/drivers/bluetooth/btintel_pcie.c index fd4a8bd056fa9..9681a4b8a66a1 100644 --- a/drivers/bluetooth/btintel_pcie.c +++ b/drivers/bluetooth/btintel_pcie.c @@ -752,10 +752,8 @@ static int btintel_pcie_submit_rx_work(struct btintel_pcie_data *data, u8 status buf += sizeof(*rfh_hdr); skb = alloc_skb(len, GFP_ATOMIC); - if (!skb) { - ret = -ENOMEM; + if (!skb) goto resubmit; - } skb_put_data(skb, buf, len); skb_queue_tail(&data->rx_skb_q, skb);