diff options
author | Chris Packham <chris.packham@alliedtelesis.co.nz> | 2020-02-05 13:11:13 +1300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2020-02-12 13:50:32 -0800 |
commit | f9546de43df2b1f9606e9baa9f3f0399c4d1ca0b (patch) | |
tree | 690107d1d68629770ba1f075f22273bb2a2cec24 /arch/mips/include/asm/octeon/cvmx-helper-util.h | |
parent | 422d97b8b05ed38cc5f67522ddb821868ea272a7 (diff) | |
download | linux-f9546de43df2b1f9606e9baa9f3f0399c4d1ca0b.tar.gz linux-f9546de43df2b1f9606e9baa9f3f0399c4d1ca0b.tar.bz2 linux-f9546de43df2b1f9606e9baa9f3f0399c4d1ca0b.zip |
MIPS: octeon: remove typedef declaration for cvmx_wqe
Remove typedef declaration from struct cvmx_wqe and replace its previous
uses with new struct declaration.
Signed-off-by: Chris Packham <chris.packham@alliedtelesis.co.nz>
Link: https://lore.kernel.org/r/20200205001116.14096-4-chris.packham@alliedtelesis.co.nz
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch/mips/include/asm/octeon/cvmx-helper-util.h')
-rw-r--r-- | arch/mips/include/asm/octeon/cvmx-helper-util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/include/asm/octeon/cvmx-helper-util.h b/arch/mips/include/asm/octeon/cvmx-helper-util.h index e9a97e7ee604..97b27a07cfb0 100644 --- a/arch/mips/include/asm/octeon/cvmx-helper-util.h +++ b/arch/mips/include/asm/octeon/cvmx-helper-util.h @@ -123,7 +123,7 @@ static inline int cvmx_helper_get_last_ipd_port(int interface) * * @work: Work queue entry with packet to free */ -static inline void cvmx_helper_free_packet_data(cvmx_wqe_t *work) +static inline void cvmx_helper_free_packet_data(struct cvmx_wqe *work) { uint64_t number_buffers; union cvmx_buf_ptr buffer_ptr; |