diff options
author | M Chetan Kumar <m.chetan.kumar@linux.intel.com> | 2023-05-09 19:36:22 +0300 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2023-05-11 05:15:01 +0300 |
commit | c930192572db454371764f1efa81be9ff14e6961 (patch) | |
tree | 877406a9a75932579f505e082d0507f72f1ee5c0 /drivers/net/wwan | |
parent | 796fb97a8cd9f893026458d606a270d4d5799543 (diff) | |
download | linux-c930192572db454371764f1efa81be9ff14e6961.tar.xz |
net: wwan: iosm: remove unused enum definition
ipc_time_unit enum is defined but not used.
Remove it to avoid unexpected usage.
Signed-off-by: M Chetan Kumar <m.chetan.kumar@linux.intel.com>
Reviewed-by: Simon Horman <simon.horman@corigine.com>
Link: https://lore.kernel.org/r/8295a6138f13c686590ee4021384ee992f717408.1683649868.git.m.chetan.kumar@linux.intel.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'drivers/net/wwan')
-rw-r--r-- | drivers/net/wwan/iosm/iosm_ipc_imem.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/drivers/net/wwan/iosm/iosm_ipc_imem.h b/drivers/net/wwan/iosm/iosm_ipc_imem.h index e700dc8bfe0a..93d57aa7854a 100644 --- a/drivers/net/wwan/iosm/iosm_ipc_imem.h +++ b/drivers/net/wwan/iosm/iosm_ipc_imem.h @@ -140,17 +140,6 @@ enum ipc_channel_state { IMEM_CHANNEL_CLOSING, }; -/* Time Unit */ -enum ipc_time_unit { - IPC_SEC = 0, - IPC_MILLI_SEC = 1, - IPC_MICRO_SEC = 2, - IPC_NANO_SEC = 3, - IPC_PICO_SEC = 4, - IPC_FEMTO_SEC = 5, - IPC_ATTO_SEC = 6, -}; - /** * enum ipc_ctype - Enum defining supported channel type needed for control * /IP traffic. |