[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <51b147e6-d502-461d-9c29-647ec67e0d38@kili.mountain>
Date: Mon, 6 Mar 2023 12:12:32 +0300
From: Dan Carpenter <error27@...il.com>
To: Philipp Hortmann <philipp.g.hortmann@...il.com>
Cc: Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
linux-staging@...ts.linux.dev, linux-kernel@...r.kernel.org
Subject: Re: [PATCH 1/2] staging: rtl8192e: Remove empty Array
Rtl8192PciERadioC_Array
On Sun, Mar 05, 2023 at 11:33:05PM +0100, Philipp Hortmann wrote:
> Remove empty array Rtl8192PciERadioC_Array and the code where it is used
> because it is dead code.
>
> Signed-off-by: Philipp Hortmann <philipp.g.hortmann@...il.com>
> ---
> drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c | 12 ------------
> drivers/staging/rtl8192e/rtl8192e/r8192E_phy.h | 2 --
> drivers/staging/rtl8192e/rtl8192e/table.c | 3 ---
> drivers/staging/rtl8192e/rtl8192e/table.h | 2 --
> 4 files changed, 19 deletions(-)
>
> diff --git a/drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c b/drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c
> index 35ca01ab65ff..fe0ef52c163a 100644
> --- a/drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c
> +++ b/drivers/staging/rtl8192e/rtl8192e/r8192E_phy.c
> @@ -649,18 +649,6 @@ u8 rtl92e_config_rf_path(struct net_device *dev, enum rf90_radio_path eRFPath)
> bMask12Bits,
> Rtl819XRadioB_Array[i+1]);
>
> - }
> - break;
> - case RF90_PATH_C:
> - for (i = 0; i < RadioC_ArrayLength; i += 2) {
> - if (Rtl819XRadioC_Array[i] == 0xfe) {
> - msleep(100);
> - continue;
> - }
> - rtl92e_set_rf_reg(dev, eRFPath, Rtl819XRadioC_Array[i],
> - bMask12Bits,
> - Rtl819XRadioC_Array[i+1]);
> -
Why is this dead code? So far as I can see "== 0xfe" is always false
so this calls rtl92e_set_rf_reg() on every iteration through the loop.
It only does one iteration through the loop.
Is it dead code because case RF90_PATH_C is always false? If so then
that needs to be explained in the commit message.
regards,
dan carpenter
Powered by blists - more mailing lists