diff options
author | Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com> | 2019-01-30 17:22:39 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2019-01-31 12:23:39 +0100 |
commit | 515548fdd8a3c579535fe05e3c39558f75158bc5 (patch) | |
tree | c104d2c2bc87844d56e2325bed1c8cfd9e6019a8 /sound/core | |
parent | 45571bb871b217f1031045a27d935ea7c6ea5d12 (diff) | |
download | linux-515548fdd8a3c579535fe05e3c39558f75158bc5.tar.bz2 |
ALSA: pcm: remove a superfluous function declaration
Declaration of snd_pcm_drop() in sound/core/pcm_native.c is superfluous
since the function isn't called before being defined. Remove the
declaration.
Signed-off-by: Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/core')
-rw-r--r-- | sound/core/pcm_native.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sound/core/pcm_native.c b/sound/core/pcm_native.c index 0bc4aa0ac9cf..672babd20cb1 100644 --- a/sound/core/pcm_native.c +++ b/sound/core/pcm_native.c @@ -1806,8 +1806,6 @@ static const struct action_ops snd_pcm_action_drain_init = { .post_action = snd_pcm_post_drain_init }; -static int snd_pcm_drop(struct snd_pcm_substream *substream); - /* * Drain the stream(s). * When the substream is linked, sync until the draining of all playback streams |