Revert "staging: octeon: remove typedef in enum cvmx_spi_mode_t"
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 30 Oct 2023 08:54:14 +0000 (09:54 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 30 Oct 2023 08:56:27 +0000 (09:56 +0100)
This reverts commit 7bebd832177670e6cce1783cf144f989cd3cf4b5.

The patch series that removed typedefs from the octeon driver was not
actually built properly, and broke the build (it's hard to test-build
this driver for some reason.)  Remove them all at this point in time to
make sure the build works properly.

Link: https://lore.kernel.org/r/32e9ad3c-191e-4dd1-b1cc-07f7b93c3f28@roeck-us.net
Reported-by: Guenter Roeck <linux@roeck-us.net>
Cc: Oliver Crumrine <ozlinux@hotmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/octeon/octeon-stubs.h

index 9f26962..3e7b92c 100644 (file)
@@ -213,12 +213,12 @@ enum cvmx_fau_op_size {
        CVMX_FAU_OP_SIZE_64 = 3
 };
 
-enum cvmx_spi_mode {
+typedef enum {
        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,
-                                       enum cvmx_spi_mode mode, int timeout)
+                                       cvmx_spi_mode_t mode, int timeout)
 {
        return 0;
 }