diff options
author | Adrian Bunk <bunk@stusta.de> | 2006-08-21 19:22:45 +0200 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2006-09-23 10:42:42 +0200 |
commit | 93f09c4cc111506db2ffa6220b7a3d7f73e41aa3 (patch) | |
tree | 733b0aad32c31998c92a68635669eec0df308837 /sound/pci/emu10k1 | |
parent | ab93c7ae54a81bcecb77608ca89eea140f1d45ad (diff) | |
download | op-kernel-dev-93f09c4cc111506db2ffa6220b7a3d7f73e41aa3.zip op-kernel-dev-93f09c4cc111506db2ffa6220b7a3d7f73e41aa3.tar.gz |
[ALSA] make sound/pci/emu10k1/emu10k1.c:snd_emu10k1_resume() static
This patch makes the needlessly global snd_emu10k1_resume() static.
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@suse.cz>
Diffstat (limited to 'sound/pci/emu10k1')
-rw-r--r-- | sound/pci/emu10k1/emu10k1.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/emu10k1/emu10k1.c b/sound/pci/emu10k1/emu10k1.c index 289bcd9..493ec08 100644 --- a/sound/pci/emu10k1/emu10k1.c +++ b/sound/pci/emu10k1/emu10k1.c @@ -232,7 +232,7 @@ static int snd_emu10k1_suspend(struct pci_dev *pci, pm_message_t state) return 0; } -int snd_emu10k1_resume(struct pci_dev *pci) +static int snd_emu10k1_resume(struct pci_dev *pci) { struct snd_card *card = pci_get_drvdata(pci); struct snd_emu10k1 *emu = card->private_data; |