Commit da9c7b94 authored by Jaroslav Kysela's avatar Jaroslav Kysela

[ALSA] Remove & from function pointers

AC97 Codec Core
Remove & from function pointers (it works but not common to add it...)
Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent f7f923c2
......@@ -910,7 +910,7 @@ static void patch_ad1881_chained(ac97_t * ac97, int unchained_idx, int cidx1, in
static struct snd_ac97_build_ops patch_ad1881_build_ops = {
#ifdef CONFIG_PM
.resume = &ad18xx_resume
.resume = ad18xx_resume
#endif
};
......@@ -993,7 +993,7 @@ static int patch_ad1885_specific(ac97_t * ac97)
static struct snd_ac97_build_ops patch_ad1885_build_ops = {
.build_specific = &patch_ad1885_specific,
#ifdef CONFIG_PM
.resume = &ad18xx_resume
.resume = ad18xx_resume
#endif
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment