diff options
author | Clemens Ladisch <clemens@ladisch.de> | 2005-08-11 15:59:17 +0200 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2005-08-30 08:45:01 +0200 |
commit | a53fc188ec6fc406276799da465fe789c40d96b2 (patch) | |
tree | 491eec5ff01481a95f803010e87de4bea4c9b1ed /sound/pci/rme9652 | |
parent | b65f824c1ea954ea2b974e42c064f72bfbfe3dd2 (diff) | |
download | linux-3.10-a53fc188ec6fc406276799da465fe789c40d96b2.tar.gz linux-3.10-a53fc188ec6fc406276799da465fe789c40d96b2.tar.bz2 linux-3.10-a53fc188ec6fc406276799da465fe789c40d96b2.zip |
[ALSA] make local objects static
Memalloc module,PCM Midlevel,Timer Midlevel,GUS Library,AC97 Codec
ALI5451 driver,RME9652 driver
Make some functions/variables that are used in only one file static.
Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Diffstat (limited to 'sound/pci/rme9652')
-rw-r--r-- | sound/pci/rme9652/hdspm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/pci/rme9652/hdspm.c b/sound/pci/rme9652/hdspm.c index f6daec4e4d9..d4a0c2c56cd 100644 --- a/sound/pci/rme9652/hdspm.c +++ b/sound/pci/rme9652/hdspm.c @@ -1104,14 +1104,14 @@ static int snd_hdspm_midi_output_close(snd_rawmidi_substream_t * substream) return 0; } -snd_rawmidi_ops_t snd_hdspm_midi_output = +static snd_rawmidi_ops_t snd_hdspm_midi_output = { .open = snd_hdspm_midi_output_open, .close = snd_hdspm_midi_output_close, .trigger = snd_hdspm_midi_output_trigger, }; -snd_rawmidi_ops_t snd_hdspm_midi_input = +static snd_rawmidi_ops_t snd_hdspm_midi_input = { .open = snd_hdspm_midi_input_open, .close = snd_hdspm_midi_input_close, |