aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorJaroslav Kysela <perex@suse.cz>2005-01-12 13:21:18 +0100
committerJaroslav Kysela <perex@suse.cz>2005-01-12 13:21:18 +0100
commitda9c7b943ec6c59aec9dc4ce99fadf772fd1f9c3 (patch)
treeed1804773a4d463bae85f7a32c53c2b3bb685084 /sound
parentf7f923c2432c4dee40560186dabb7cb9bc5b2b64 (diff)
downloadhistory-da9c7b943ec6c59aec9dc4ce99fadf772fd1f9c3.tar.gz
[ALSA] Remove & from function pointers
AC97 Codec Core Remove & from function pointers (it works but not common to add it...) Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/ac97/ac97_patch.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/ac97/ac97_patch.c b/sound/pci/ac97/ac97_patch.c
index cb7d9e1319060d..6031db827a4de4 100644
--- a/sound/pci/ac97/ac97_patch.c
+++ b/sound/pci/ac97/ac97_patch.c
@@ -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
};