ASoC: ux500: Drop redundant msp id enumerations
authorFabio Baltieri <fabio.baltieri@linaro.org>
Fri, 24 May 2013 10:39:20 +0000 (12:39 +0200)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Sat, 25 May 2013 19:58:35 +0000 (15:58 -0400)
Ux500 has two equivalent enum for device id, one in platform_data and
one in a local header.  Fix this by dropping the local one.

Signed-off-by: Fabio Baltieri <fabio.baltieri@linaro.org>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
sound/soc/ux500/ux500_msp_i2s.h

index d5e41763c9c77fee761e84f8f3cb1e9810d11dc0..189a3751993bd3c22e66bb097207eb69338259c5 100644 (file)
@@ -16,6 +16,7 @@
 #define UX500_MSP_I2S_H
 
 #include <linux/platform_device.h>
+#include <linux/platform_data/asoc-ux500-msp.h>
 
 #define MSP_INPUT_FREQ_APB 48000000
 
@@ -365,13 +366,6 @@ enum msp_protocol {
  */
 #define MAX_MSP_BACKUP_REGS 36
 
-enum enum_i2s_controller {
-       MSP_0_I2S_CONTROLLER = 0,
-       MSP_1_I2S_CONTROLLER,
-       MSP_2_I2S_CONTROLLER,
-       MSP_3_I2S_CONTROLLER,
-};
-
 enum i2s_direction_t {
        MSP_DIR_TX = 0x01,
        MSP_DIR_RX = 0x02,
@@ -475,7 +469,7 @@ struct ux500_msp_config {
 };
 
 struct ux500_msp {
-       enum enum_i2s_controller id;
+       enum msp_i2s_id id;
        void __iomem *registers;
        struct device *dev;
        struct stedma40_chan_cfg *dma_cfg_rx;