static int wm8804_aif_event(struct snd_soc_dapm_widget *w,
                            struct snd_kcontrol *kcontrol, int event)
 {
-       struct snd_soc_codec *codec = snd_soc_dapm_to_codec(w->dapm);
-       struct wm8804_priv *wm8804 = snd_soc_codec_get_drvdata(codec);
+       struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm);
+       struct wm8804_priv *wm8804 = snd_soc_component_get_drvdata(component);
 
        switch (event) {
        case SND_SOC_DAPM_POST_PMU:
                /* power up the aif */
                if (!wm8804->aif_pwr)
-                       snd_soc_update_bits(codec, WM8804_PWRDN, 0x10, 0x0);
+                       snd_soc_component_update_bits(component, WM8804_PWRDN, 0x10, 0x0);
                wm8804->aif_pwr++;
                break;
        case SND_SOC_DAPM_POST_PMD:
                /* power down only both paths are disabled */
                wm8804->aif_pwr--;
                if (!wm8804->aif_pwr)
-                       snd_soc_update_bits(codec, WM8804_PWRDN, 0x10, 0x10);
+                       snd_soc_component_update_bits(component, WM8804_PWRDN, 0x10, 0x10);
                break;
        }
 
 static int txsrc_put(struct snd_kcontrol *kcontrol,
                     struct snd_ctl_elem_value *ucontrol)
 {
-       struct snd_soc_codec *codec = snd_soc_dapm_kcontrol_codec(kcontrol);
-       struct snd_soc_dapm_context *dapm = snd_soc_codec_get_dapm(codec);
+       struct snd_soc_component *component = snd_soc_dapm_kcontrol_component(kcontrol);
+       struct snd_soc_dapm_context *dapm = snd_soc_component_get_dapm(component);
        struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
        unsigned int val = ucontrol->value.enumerated.item[0] << e->shift_l;
        unsigned int mask = 1 << e->shift_l;
 
        snd_soc_dapm_mutex_lock(dapm);
 
-       if (snd_soc_test_bits(codec, e->reg, mask, val)) {
+       if (snd_soc_component_test_bits(component, e->reg, mask, val)) {
                /* save the current power state of the transmitter */
-               txpwr = snd_soc_read(codec, WM8804_PWRDN) & 0x4;
+               txpwr = snd_soc_component_read32(component, WM8804_PWRDN) & 0x4;
 
                /* power down the transmitter */
-               snd_soc_update_bits(codec, WM8804_PWRDN, 0x4, 0x4);
+               snd_soc_component_update_bits(component, WM8804_PWRDN, 0x4, 0x4);
 
                /* set the tx source */
-               snd_soc_update_bits(codec, e->reg, mask, val);
+               snd_soc_component_update_bits(component, e->reg, mask, val);
 
                /* restore the transmitter's configuration */
-               snd_soc_update_bits(codec, WM8804_PWRDN, 0x4, txpwr);
+               snd_soc_component_update_bits(component, WM8804_PWRDN, 0x4, txpwr);
        }
 
        snd_soc_dapm_mutex_unlock(dapm);
 
 static int wm8804_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
 {
-       struct snd_soc_codec *codec;
+       struct snd_soc_component *component;
        u16 format, master, bcp, lrp;
 
-       codec = dai->codec;
+       component = dai->component;
 
        switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
        case SND_SOC_DAIFMT_I2S:
        }
 
        /* set data format */
-       snd_soc_update_bits(codec, WM8804_AIFTX, 0x3, format);
-       snd_soc_update_bits(codec, WM8804_AIFRX, 0x3, format);
+       snd_soc_component_update_bits(component, WM8804_AIFTX, 0x3, format);
+       snd_soc_component_update_bits(component, WM8804_AIFRX, 0x3, format);
 
        switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
        case SND_SOC_DAIFMT_CBM_CFM:
        }
 
        /* set master/slave mode */
-       snd_soc_update_bits(codec, WM8804_AIFRX, 0x40, master << 6);
+       snd_soc_component_update_bits(component, WM8804_AIFRX, 0x40, master << 6);
 
        bcp = lrp = 0;
        switch (fmt & SND_SOC_DAIFMT_INV_MASK) {
        }
 
        /* set frame inversion */
-       snd_soc_update_bits(codec, WM8804_AIFTX, 0x10 | 0x20,
+       snd_soc_component_update_bits(component, WM8804_AIFTX, 0x10 | 0x20,
                            (bcp << 4) | (lrp << 5));
-       snd_soc_update_bits(codec, WM8804_AIFRX, 0x10 | 0x20,
+       snd_soc_component_update_bits(component, WM8804_AIFRX, 0x10 | 0x20,
                            (bcp << 4) | (lrp << 5));
        return 0;
 }
                            struct snd_pcm_hw_params *params,
                            struct snd_soc_dai *dai)
 {
-       struct snd_soc_codec *codec;
+       struct snd_soc_component *component;
        u16 blen;
 
-       codec = dai->codec;
+       component = dai->component;
 
        switch (params_width(params)) {
        case 16:
        }
 
        /* set word length */
-       snd_soc_update_bits(codec, WM8804_AIFTX, 0xc, blen << 2);
-       snd_soc_update_bits(codec, WM8804_AIFRX, 0xc, blen << 2);
+       snd_soc_component_update_bits(component, WM8804_AIFTX, 0xc, blen << 2);
+       snd_soc_component_update_bits(component, WM8804_AIFRX, 0xc, blen << 2);
 
        return 0;
 }
                          int source, unsigned int freq_in,
                          unsigned int freq_out)
 {
-       struct snd_soc_codec *codec = dai->codec;
-       struct wm8804_priv *wm8804 = snd_soc_codec_get_drvdata(codec);
+       struct snd_soc_component *component = dai->component;
+       struct wm8804_priv *wm8804 = snd_soc_component_get_drvdata(component);
        bool change;
 
        if (!freq_in || !freq_out) {
                        pm_runtime_get_sync(wm8804->dev);
 
                /* set PLLN and PRESCALE */
-               snd_soc_update_bits(codec, WM8804_PLL4, 0xf | 0x10,
+               snd_soc_component_update_bits(component, WM8804_PLL4, 0xf | 0x10,
                                    pll_div.n | (pll_div.prescale << 4));
                /* set mclkdiv and freqmode */
-               snd_soc_update_bits(codec, WM8804_PLL5, 0x3 | 0x8,
+               snd_soc_component_update_bits(component, WM8804_PLL5, 0x3 | 0x8,
                                    pll_div.freqmode | (pll_div.mclkdiv << 3));
                /* set PLLK */
-               snd_soc_write(codec, WM8804_PLL1, pll_div.k & 0xff);
-               snd_soc_write(codec, WM8804_PLL2, (pll_div.k >> 8) & 0xff);
-               snd_soc_write(codec, WM8804_PLL3, pll_div.k >> 16);
+               snd_soc_component_write(component, WM8804_PLL1, pll_div.k & 0xff);
+               snd_soc_component_write(component, WM8804_PLL2, (pll_div.k >> 8) & 0xff);
+               snd_soc_component_write(component, WM8804_PLL3, pll_div.k >> 16);
 
                /* power up the PLL */
-               snd_soc_update_bits(codec, WM8804_PWRDN, 0x1, 0);
+               snd_soc_component_update_bits(component, WM8804_PWRDN, 0x1, 0);
        }
 
        return 0;
 static int wm8804_set_sysclk(struct snd_soc_dai *dai,
                             int clk_id, unsigned int freq, int dir)
 {
-       struct snd_soc_codec *codec;
+       struct snd_soc_component *component;
 
-       codec = dai->codec;
+       component = dai->component;
 
        switch (clk_id) {
        case WM8804_TX_CLKSRC_MCLK:
                if ((freq >= 10000000 && freq <= 14400000)
                                || (freq >= 16280000 && freq <= 27000000))
-                       snd_soc_update_bits(codec, WM8804_PLL6, 0x80, 0x80);
+                       snd_soc_component_update_bits(component, WM8804_PLL6, 0x80, 0x80);
                else {
                        dev_err(dai->dev, "OSCCLOCK is not within the "
                                "recommended range: %uHz\n", freq);
                }
                break;
        case WM8804_TX_CLKSRC_PLL:
-               snd_soc_update_bits(codec, WM8804_PLL6, 0x80, 0);
+               snd_soc_component_update_bits(component, WM8804_PLL6, 0x80, 0);
                break;
        case WM8804_CLKOUT_SRC_CLK1:
-               snd_soc_update_bits(codec, WM8804_PLL6, 0x8, 0);
+               snd_soc_component_update_bits(component, WM8804_PLL6, 0x8, 0);
                break;
        case WM8804_CLKOUT_SRC_OSCCLK:
-               snd_soc_update_bits(codec, WM8804_PLL6, 0x8, 0x8);
+               snd_soc_component_update_bits(component, WM8804_PLL6, 0x8, 0x8);
                break;
        default:
                dev_err(dai->dev, "Unknown clock source: %d\n", clk_id);
 static int wm8804_set_clkdiv(struct snd_soc_dai *dai,
                             int div_id, int div)
 {
-       struct snd_soc_codec *codec;
+       struct snd_soc_component *component;
        struct wm8804_priv *wm8804;
 
-       codec = dai->codec;
+       component = dai->component;
        switch (div_id) {
        case WM8804_CLKOUT_DIV:
-               snd_soc_update_bits(codec, WM8804_PLL5, 0x30,
+               snd_soc_component_update_bits(component, WM8804_PLL5, 0x30,
                                    (div & 0x3) << 4);
                break;
        case WM8804_MCLK_DIV:
-               wm8804 = snd_soc_codec_get_drvdata(codec);
+               wm8804 = snd_soc_component_get_drvdata(component);
                wm8804->mclk_div = div;
                break;
        default:
        .symmetric_rates = 1
 };
 
-static const struct snd_soc_codec_driver soc_codec_dev_wm8804 = {
-       .idle_bias_off = true,
-
-       .component_driver = {
-               .dapm_widgets           = wm8804_dapm_widgets,
-               .num_dapm_widgets       = ARRAY_SIZE(wm8804_dapm_widgets),
-               .dapm_routes            = wm8804_dapm_routes,
-               .num_dapm_routes        = ARRAY_SIZE(wm8804_dapm_routes),
-       },
+static const struct snd_soc_component_driver soc_component_dev_wm8804 = {
+       .dapm_widgets           = wm8804_dapm_widgets,
+       .num_dapm_widgets       = ARRAY_SIZE(wm8804_dapm_widgets),
+       .dapm_routes            = wm8804_dapm_routes,
+       .num_dapm_routes        = ARRAY_SIZE(wm8804_dapm_routes),
+       .use_pmdown_time        = 1,
+       .endianness             = 1,
+       .non_legacy_dai_naming  = 1,
 };
 
 const struct regmap_config wm8804_regmap_config = {
                }
        }
 
-       ret = snd_soc_register_codec(dev, &soc_codec_dev_wm8804,
+       ret = devm_snd_soc_register_component(dev, &soc_component_dev_wm8804,
                                     &wm8804_dai, 1);
        if (ret < 0) {
                dev_err(dev, "Failed to register CODEC: %d\n", ret);
 void wm8804_remove(struct device *dev)
 {
        pm_runtime_disable(dev);
-       snd_soc_unregister_codec(dev);
 }
 EXPORT_SYMBOL_GPL(wm8804_remove);