[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <CAD=FV=W-kPfnL2jB7bw4SSC=8hBfZg4kq7=rsHHCxDRj6yaSeQ@mail.gmail.com>
Date: Thu, 3 Feb 2022 06:44:18 -0800
From: Doug Anderson <dianders@...omium.org>
To: Youghandhar Chintala <quic_youghand@...cinc.com>
Cc: ath10k <ath10k@...ts.infradead.org>,
linux-wireless <linux-wireless@...r.kernel.org>,
LKML <linux-kernel@...r.kernel.org>, quic_pillair@...cinc.com,
Abhishek Kumar <kuabhs@...omium.org>,
Brian Norris <briannorris@...omium.org>,
Guenter Roeck <groeck@...omium.org>
Subject: Re: [RFC 1/2] ath10k: Set tx credit to one for wcn3990 snoc based devices
Hi,
On Thu, Jan 20, 2022 at 10:44 PM Youghandhar Chintala
<quic_youghand@...cinc.com> wrote:
>
> - htc->total_transmit_credits = __le16_to_cpu(msg->ready.credit_count);
> + if (ar->hw_params.tx_credit_limit)
> + htc->total_transmit_credits =
> + __le16_to_cpu(HTC_HOST_MAX_CREDIT_COUNT);
> + else
> + htc->total_transmit_credits =
> + __le16_to_cpu(msg->ready.credit_count);
Apparently 0-day had a bit of a problem with the syntax above. See
<https://crrev.com/c/3435607>. Basically you don't need the
__le16_to_cpu() around the constant HTC_HOST_MAX_CREDIT_COUNT.
-Doug
Powered by blists - more mailing lists