/* DAI capabilities */
        struct snd_soc_pcm_stream capture;
        struct snd_soc_pcm_stream playback;
-       unsigned int symmetric_rates:1; /* will be removed */
        unsigned int symmetric_rate:1;
        unsigned int symmetric_channels:1;
-       unsigned int symmetric_samplebits:1; /* will be removed */
        unsigned int symmetric_sample_bits:1;
 
        /* probe ordering - for components with runtime dependencies */
 
 {
        struct snd_soc_component *component;
        int ret;
-       int i;
-
-       /* Remove ME */
-       for (i = 0; i < num_dai; i++) {
-               if (dai_drv[i].symmetric_rates)
-                       dai_drv[i].symmetric_rate = dai_drv[i].symmetric_rates;
-               if (dai_drv[i].symmetric_samplebits)
-                       dai_drv[i].symmetric_sample_bits = dai_drv[i].symmetric_samplebits;
-       }
 
        component = devm_kzalloc(dev, sizeof(*component), GFP_KERNEL);
        if (!component)