ASoC: Fix section mismatch warnings in WM8994
authorMark Brown <broonie@opensource.wolfsonmicro.com>
Mon, 7 Mar 2011 16:42:20 +0000 (16:42 +0000)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Tue, 8 Mar 2011 18:56:11 +0000 (18:56 +0000)
Annoying as the __devinitdata is actually correct.

Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Acked-by: Liam Girdwood <lrg@ti.com>
sound/soc/codecs/wm8994-tables.c
sound/soc/codecs/wm8994.h

index 61dfd91..a87adbd 100644 (file)
@@ -1573,7 +1573,7 @@ const struct wm8994_access_mask wm8994_access_masks[WM8994_CACHE_SIZE] = {
        { 0x03C3, 0x03C3 }, /* R1569  - Sidetone */
 };
 
-const __devinitdata u16 wm8994_reg_defaults[WM8994_CACHE_SIZE] = {
+const u16 wm8994_reg_defaults[WM8994_CACHE_SIZE] = {
        0x8994,     /* R0     - Software Reset */
        0x0000,     /* R1     - Power Management (1) */
        0x6000,     /* R2     - Power Management (2) */
index 0c355bf..999b885 100644 (file)
@@ -43,6 +43,6 @@ struct wm8994_access_mask {
 };
 
 extern const struct wm8994_access_mask wm8994_access_masks[WM8994_CACHE_SIZE];
-extern const __devinitdata  u16 wm8994_reg_defaults[WM8994_CACHE_SIZE];
+extern const u16 wm8994_reg_defaults[WM8994_CACHE_SIZE];
 
 #endif