diff options
author | Robert Shearman <robertshearman@gmail.com> | 2021-02-26 11:24:48 +0000 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2021-03-04 10:54:42 +0000 |
commit | 4d9f9a6b6b1ab23af3e3d594633b3fb49ea0ad3c (patch) | |
tree | f26a97df696c7ac3350820c89400ff00aec2920b /src | |
parent | cef0cc1a07a50fe6ece9692e1d45790ee16d61ed (diff) |
marvell: remove unused variable
Fix compile error in mrvl_pp2_delete_if caused by unused variable by
removing that variable.
Type: fix
Fixes: b85b0df2a039b694fb2f3c09a01decfb89d7bce2
Change-Id: I819bcfbfdbd0f85cc42be953be63ef124520852c
Signed-off-by: Robert Shearman <robertshearman@gmail.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/marvell/pp2/pp2.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/plugins/marvell/pp2/pp2.c b/src/plugins/marvell/pp2/pp2.c index a92b35c4d8b..dfe5c157018 100644 --- a/src/plugins/marvell/pp2/pp2.c +++ b/src/plugins/marvell/pp2/pp2.c @@ -120,7 +120,6 @@ mrvl_pp2_delete_if (mrvl_pp2_if_t * ppif) mrvl_pp2_main_t *ppm = &mrvl_pp2_main; mrvl_pp2_outq_t *outq; mrvl_pp2_inq_t *inq; - int i; if (ppif->hw_if_index != ~0) ethernet_delete_interface (vnm, ppif->hw_if_index); |