diff options
author | Yuan Can <yuancan@huawei.com> | 2022-09-27 16:39:40 +0300 |
---|---|---|
committer | Paolo Abeni <pabeni@redhat.com> | 2022-09-29 11:14:05 +0300 |
commit | 01c617d73f840c097d1db4c367c6b4044edfc827 (patch) | |
tree | 9901cffa9a0bce8d876aef478c86805fcc9d434c | |
parent | 1a0c667ea8e34edbad27f9c7f435e4825fab2163 (diff) | |
download | linux-01c617d73f840c097d1db4c367c6b4044edfc827.tar.xz |
net: liquidio: Remove unused struct lio_trusted_vf_ctx
After commit 6870957ed5bc("liquidio: make soft command calls synchronous"), no
one use struct lio_trusted_vf_ctx, so remove it.
Signed-off-by: Yuan Can <yuancan@huawei.com>
Link: https://lore.kernel.org/r/20220927133940.104181-1-yuancan@huawei.com
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
-rw-r--r-- | drivers/net/ethernet/cavium/liquidio/lio_main.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/net/ethernet/cavium/liquidio/lio_main.c b/drivers/net/ethernet/cavium/liquidio/lio_main.c index bee35ce60171..d312bd594935 100644 --- a/drivers/net/ethernet/cavium/liquidio/lio_main.c +++ b/drivers/net/ethernet/cavium/liquidio/lio_main.c @@ -92,11 +92,6 @@ static int octeon_console_debug_enabled(u32 console) /* time to wait for possible in-flight requests in milliseconds */ #define WAIT_INFLIGHT_REQUEST msecs_to_jiffies(1000) -struct lio_trusted_vf_ctx { - struct completion complete; - int status; -}; - struct oct_link_status_resp { u64 rh; struct oct_link_info link_info; |