staging: octeon: remove typedef in enum cvmx_spi_mode_t
authorOliver Crumrine <ozlinux@hotmail.com>
Mon, 28 Aug 2023 15:39:06 +0000 (11:39 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 17 Sep 2023 07:49:50 +0000 (09:49 +0200)
Remove typedef in enum cvmx_spi_mode_t, and rename all instances to
cvmx_spi_mode

Signed-off-by: Oliver Crumrine <ozlinux@hotmail.com>
Link: https://lore.kernel.org/r/PH7PR11MB764333BA75F5760600A4D08EBCE0A@PH7PR11MB7643.namprd11.prod.outlook.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/octeon/octeon-stubs.h

index 3e7b92cd2e35e69ad2e43429cb7068c83ea867b9..9f269626b8627080175784aca7e916d840ac72ed 100644 (file)
@@ -213,12 +213,12 @@ enum cvmx_fau_op_size {
        CVMX_FAU_OP_SIZE_64 = 3
 };
 
-typedef enum {
+enum cvmx_spi_mode {
        CVMX_SPI_MODE_UNKNOWN = 0,
        CVMX_SPI_MODE_TX_HALFPLEX = 1,
        CVMX_SPI_MODE_RX_HALFPLEX = 2,
        CVMX_SPI_MODE_DUPLEX = 3
-} cvmx_spi_mode_t;
+};
 
 typedef enum {
        CVMX_HELPER_INTERFACE_MODE_DISABLED,
@@ -1362,7 +1362,7 @@ static inline struct cvmx_wqe *cvmx_pow_work_request_sync(cvmx_pow_wait_t wait)
 }
 
 static inline int cvmx_spi_restart_interface(int interface,
-                                       cvmx_spi_mode_t mode, int timeout)
+                                       enum cvmx_spi_mode mode, int timeout)
 {
        return 0;
 }