diff options
author | M Chetan Kumar <m.chetan.kumar@linux.intel.com> | 2021-11-10 19:20:36 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-11-11 14:45:44 +0300 |
commit | 29cd386750412297fd064c01c87bc40a26f24047 (patch) | |
tree | 617c10b4829155170f0a339960f1a8193eb0ede1 | |
parent | 4ca110bf8d9b31a60f8f8ff6706ea147d38ad97c (diff) | |
download | linux-29cd386750412297fd064c01c87bc40a26f24047.tar.xz |
net: wwan: iosm: fix compilation warning
curr_phase is unused. Removed the dead code.
Fixes: 8d9be0634181 ("net: wwan: iosm: transport layer support for fw flashing/cd")
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: M Chetan Kumar <m.chetan.kumar@linux.intel.com>
Reviewed-by: Loic Poulain <loic.poulain@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/wwan/iosm/iosm_ipc_imem_ops.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/net/wwan/iosm/iosm_ipc_imem_ops.c b/drivers/net/wwan/iosm/iosm_ipc_imem_ops.c index b885a6570235..825e8e5ffb2a 100644 --- a/drivers/net/wwan/iosm/iosm_ipc_imem_ops.c +++ b/drivers/net/wwan/iosm/iosm_ipc_imem_ops.c @@ -394,12 +394,10 @@ void ipc_imem_sys_devlink_close(struct iosm_devlink *ipc_devlink) int boot_check_timeout = BOOT_CHECK_DEFAULT_TIMEOUT; enum ipc_mem_exec_stage exec_stage; struct ipc_mem_channel *channel; - enum ipc_phase curr_phase; int status = 0; u32 tail = 0; channel = ipc_imem->ipc_devlink->devlink_sio.channel; - curr_phase = ipc_imem->phase; /* Increase the total wait time to boot_check_timeout */ do { exec_stage = ipc_mmio_get_exec_stage(ipc_imem->mmio); |