Commit 6d7e7c31 authored by Cristiane Naves's avatar Cristiane Naves Committed by Greg Kroah-Hartman

staging: octeon: Remove unneeded variable

Remove unneeded variable used to store return value. Issue found by
coccicheck.
Signed-off-by: default avatarCristiane Naves <cristianenavescardoso09@gmail.com>
Link: https://lore.kernel.org/r/20191026222453.GA14562@cristiane-Inspiron-5420Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 351567d2
...@@ -1387,9 +1387,7 @@ static inline cvmx_pko_status_t cvmx_pko_send_packet_finish(uint64_t port, ...@@ -1387,9 +1387,7 @@ static inline cvmx_pko_status_t cvmx_pko_send_packet_finish(uint64_t port,
uint64_t queue, union cvmx_pko_command_word0 pko_command, uint64_t queue, union cvmx_pko_command_word0 pko_command,
union cvmx_buf_ptr packet, cvmx_pko_lock_t use_locking) union cvmx_buf_ptr packet, cvmx_pko_lock_t use_locking)
{ {
cvmx_pko_status_t ret = 0; return 0;
return ret;
} }
static inline void cvmx_wqe_set_port(struct cvmx_wqe *work, int port) static inline void cvmx_wqe_set_port(struct cvmx_wqe *work, int port)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment