diff options
author | Takashi Iwai <tiwai@suse.de> | 2015-02-11 22:39:51 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2015-02-12 11:35:11 +0100 |
commit | 72496edcf85e048b4c5373d518e4f27938d9594e (patch) | |
tree | 29f4a7a90c721f3dc44d02af7dd6003eaf7111b6 /sound/core | |
parent | b6a42670e074da39b5a9f990774359e0733ca9cd (diff) | |
download | linux-72496edcf85e048b4c5373d518e4f27938d9594e.tar.bz2 |
ALSA: seq: Don't compile snd_seq_device_load_drivers() for built-in
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/core')
-rw-r--r-- | sound/core/seq/seq_device.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/sound/core/seq/seq_device.c b/sound/core/seq/seq_device.c index a752a79a8d3a..075a66c0cc6a 100644 --- a/sound/core/seq/seq_device.c +++ b/sound/core/seq/seq_device.c @@ -198,19 +198,16 @@ void snd_seq_autoload_init(void) #endif } EXPORT_SYMBOL(snd_seq_autoload_init); -#else -#define try_autoload(ops) /* NOP */ -#endif - void snd_seq_device_load_drivers(void) { -#ifdef CONFIG_MODULES queue_autoload_drivers(); flush_work(&autoload_work); -#endif } EXPORT_SYMBOL(snd_seq_device_load_drivers); +#else +#define try_autoload(ops) /* NOP */ +#endif /* * register a sequencer device |