Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b993f92b authored by Mark Brown's avatar Mark Brown
Browse files

ASoC: Fix section mismatch warnings in WM8994



Annoying as the __devinitdata is actually correct.

Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
Acked-by: default avatarLiam Girdwood <lrg@ti.com>
parent 149c7b44
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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) */
+1 −1
Original line number Diff line number Diff line
@@ -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