* [PATCH 1/1] ALSA: add dummy function to support shared mmap in nommu Blackfin arch (v3)
@ 2008-09-03 8:38 Bryan Wu
2008-09-03 9:26 ` Takashi Iwai
0 siblings, 1 reply; 4+ messages in thread
From: Bryan Wu @ 2008-09-03 8:38 UTC (permalink / raw)
To: tiwai; +Cc: alsa-devel, linux-kernel, Cliff Cai, Mike Frysinger, Bryan Wu
From: Cliff Cai <cliff.cai@analog.com>
v2-v3:
- when it is mmu arch, we define the dummy function to NULL
v1-v2:
- only adding this dummy function in nommu arch
Cc: Mike Frysinger <vapier.adi@gmail.com>
Signed-off-by: Cliff Cai <cliff.cai@analog.com>
Signed-off-by: Bryan Wu <cooloney@kernel.org>
---
sound/core/pcm_native.c | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/sound/core/pcm_native.c b/sound/core/pcm_native.c
index c49b9d9..e2068a4 100644
--- a/sound/core/pcm_native.c
+++ b/sound/core/pcm_native.c
@@ -3391,6 +3391,16 @@ out:
}
#endif /* CONFIG_SND_SUPPORT_OLD_API */
+#ifndef CONFIG_MMU
+unsigned long dummy_get_unmapped_area(struct file *file, unsigned long addr,
+ unsigned long len, unsigned long pgoff, unsigned long flags)
+{
+ return 0;
+}
+#else
+# define dummy_get_unmapped_area NULL
+#endif
+
/*
* Register section
*/
@@ -3407,6 +3417,7 @@ const struct file_operations snd_pcm_f_ops[2] = {
.compat_ioctl = snd_pcm_ioctl_compat,
.mmap = snd_pcm_mmap,
.fasync = snd_pcm_fasync,
+ .get_unmapped_area = dummy_get_unmapped_area,
},
{
.owner = THIS_MODULE,
@@ -3419,5 +3430,6 @@ const struct file_operations snd_pcm_f_ops[2] = {
.compat_ioctl = snd_pcm_ioctl_compat,
.mmap = snd_pcm_mmap,
.fasync = snd_pcm_fasync,
+ .get_unmapped_area = dummy_get_unmapped_area,
}
};
--
1.5.6
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/1] ALSA: add dummy function to support shared mmap in nommu Blackfin arch (v3)
2008-09-03 8:38 [PATCH 1/1] ALSA: add dummy function to support shared mmap in nommu Blackfin arch (v3) Bryan Wu
@ 2008-09-03 9:26 ` Takashi Iwai
2008-09-03 10:07 ` [alsa-devel] " Bryan Wu
0 siblings, 1 reply; 4+ messages in thread
From: Takashi Iwai @ 2008-09-03 9:26 UTC (permalink / raw)
To: Bryan Wu; +Cc: alsa-devel, linux-kernel, Cliff Cai, Mike Frysinger
At Wed, 3 Sep 2008 16:38:54 +0800,
Bryan Wu wrote:
>
> From: Cliff Cai <cliff.cai@analog.com>
>
> v2-v3:
> - when it is mmu arch, we define the dummy function to NULL
>
> v1-v2:
> - only adding this dummy function in nommu arch
>
> Cc: Mike Frysinger <vapier.adi@gmail.com>
> Signed-off-by: Cliff Cai <cliff.cai@analog.com>
> Signed-off-by: Bryan Wu <cooloney@kernel.org>
Thanks, applied now with a slight fix of coding style.
Takashi
> ---
> sound/core/pcm_native.c | 12 ++++++++++++
> 1 files changed, 12 insertions(+), 0 deletions(-)
>
> diff --git a/sound/core/pcm_native.c b/sound/core/pcm_native.c
> index c49b9d9..e2068a4 100644
> --- a/sound/core/pcm_native.c
> +++ b/sound/core/pcm_native.c
> @@ -3391,6 +3391,16 @@ out:
> }
> #endif /* CONFIG_SND_SUPPORT_OLD_API */
>
> +#ifndef CONFIG_MMU
> +unsigned long dummy_get_unmapped_area(struct file *file, unsigned long addr,
> + unsigned long len, unsigned long pgoff, unsigned long flags)
> +{
> + return 0;
> +}
> +#else
> +# define dummy_get_unmapped_area NULL
> +#endif
> +
> /*
> * Register section
> */
> @@ -3407,6 +3417,7 @@ const struct file_operations snd_pcm_f_ops[2] = {
> .compat_ioctl = snd_pcm_ioctl_compat,
> .mmap = snd_pcm_mmap,
> .fasync = snd_pcm_fasync,
> + .get_unmapped_area = dummy_get_unmapped_area,
> },
> {
> .owner = THIS_MODULE,
> @@ -3419,5 +3430,6 @@ const struct file_operations snd_pcm_f_ops[2] = {
> .compat_ioctl = snd_pcm_ioctl_compat,
> .mmap = snd_pcm_mmap,
> .fasync = snd_pcm_fasync,
> + .get_unmapped_area = dummy_get_unmapped_area,
> }
> };
> --
> 1.5.6
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [alsa-devel] [PATCH 1/1] ALSA: add dummy function to support shared mmap in nommu Blackfin arch (v3)
2008-09-03 9:26 ` Takashi Iwai
@ 2008-09-03 10:07 ` Bryan Wu
2008-09-03 10:18 ` Takashi Iwai
0 siblings, 1 reply; 4+ messages in thread
From: Bryan Wu @ 2008-09-03 10:07 UTC (permalink / raw)
To: Takashi Iwai; +Cc: Cliff Cai, alsa-devel, linux-kernel, Mike Frysinger
On Wed, Sep 3, 2008 at 5:26 PM, Takashi Iwai <tiwai@suse.de> wrote:
> At Wed, 3 Sep 2008 16:38:54 +0800,
> Bryan Wu wrote:
>>
>> From: Cliff Cai <cliff.cai@analog.com>
>>
>> v2-v3:
>> - when it is mmu arch, we define the dummy function to NULL
>>
>> v1-v2:
>> - only adding this dummy function in nommu arch
>>
>> Cc: Mike Frysinger <vapier.adi@gmail.com>
>> Signed-off-by: Cliff Cai <cliff.cai@analog.com>
>> Signed-off-by: Bryan Wu <cooloney@kernel.org>
>
> Thanks, applied now with a slight fix of coding style.
>
>
Thanks a lot. But I found the author of this patch was me not Cliff in
the sound-2.6.git.
Could you please change the author to Cliff, cause he is the original bug fixer.
-Bryan
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [alsa-devel] [PATCH 1/1] ALSA: add dummy function to support shared mmap in nommu Blackfin arch (v3)
2008-09-03 10:07 ` [alsa-devel] " Bryan Wu
@ 2008-09-03 10:18 ` Takashi Iwai
0 siblings, 0 replies; 4+ messages in thread
From: Takashi Iwai @ 2008-09-03 10:18 UTC (permalink / raw)
To: Bryan Wu; +Cc: Cliff Cai, alsa-devel, linux-kernel, Mike Frysinger
At Wed, 3 Sep 2008 18:07:03 +0800,
Bryan Wu wrote:
>
> On Wed, Sep 3, 2008 at 5:26 PM, Takashi Iwai <tiwai@suse.de> wrote:
> > At Wed, 3 Sep 2008 16:38:54 +0800,
> > Bryan Wu wrote:
> >>
> >> From: Cliff Cai <cliff.cai@analog.com>
> >>
> >> v2-v3:
> >> - when it is mmu arch, we define the dummy function to NULL
> >>
> >> v1-v2:
> >> - only adding this dummy function in nommu arch
> >>
> >> Cc: Mike Frysinger <vapier.adi@gmail.com>
> >> Signed-off-by: Cliff Cai <cliff.cai@analog.com>
> >> Signed-off-by: Bryan Wu <cooloney@kernel.org>
> >
> > Thanks, applied now with a slight fix of coding style.
> >
> >
>
> Thanks a lot. But I found the author of this patch was me not Cliff in
> the sound-2.6.git.
> Could you please change the author to Cliff, cause he is the original bug fixer.
Oh, sorry, something wrong with my script.
Fixed and pushed now.
thanks,
Takashi
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2008-09-03 10:19 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-09-03 8:38 [PATCH 1/1] ALSA: add dummy function to support shared mmap in nommu Blackfin arch (v3) Bryan Wu
2008-09-03 9:26 ` Takashi Iwai
2008-09-03 10:07 ` [alsa-devel] " Bryan Wu
2008-09-03 10:18 ` Takashi Iwai
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®