diff options
author | Takashi Iwai <tiwai@suse.de> | 2018-07-18 08:40:53 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2018-07-18 09:24:29 +0300 |
commit | fa84cf094ef9667e2b91c104b0a788fd1896f482 (patch) | |
tree | bcedd784de9c2f7033ef30c138760dbe61e82b37 /sound/firewire/isight.c | |
parent | ef4db239cda2d74f53120e223643b0f5bbf947c1 (diff) | |
download | linux-fa84cf094ef9667e2b91c104b0a788fd1896f482.tar.xz |
ALSA: pcm: Nuke snd_pcm_lib_mmap_vmalloc()
snd_pcm_lib_mmap_vmalloc() was supposed to be implemented with
somewhat special for vmalloc handling, but in the end, this turned to
just the default handler, i.e. NULL. As the situation has never
changed over decades, let's rip it off.
Reviewed-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/firewire/isight.c')
-rw-r--r-- | sound/firewire/isight.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sound/firewire/isight.c b/sound/firewire/isight.c index 3919e186a30b..30957477e005 100644 --- a/sound/firewire/isight.c +++ b/sound/firewire/isight.c @@ -454,7 +454,6 @@ static int isight_create_pcm(struct isight *isight) .trigger = isight_trigger, .pointer = isight_pointer, .page = snd_pcm_lib_get_vmalloc_page, - .mmap = snd_pcm_lib_mmap_vmalloc, }; struct snd_pcm *pcm; int err; |