Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1686314 > unrolled thread
| Started by | "Gustavo A. R. Silva" <garsilva@embeddedor.com> |
|---|---|
| First post | 2017-07-13 09:30 +0200 |
| Last post | 2017-07-14 13:10 +0200 |
| Articles | 11 — 4 participants |
Back to article view | Back to linux.kernel
[PATCH] ASoC: fsl_asrc: constify snd_soc_dai_ops structure "Gustavo A. R. Silva" <garsilva@embeddedor.com> - 2017-07-13 09:30 +0200
Re: [alsa-devel] [PATCH] ASoC: fsl_asrc: constify snd_soc_dai_ops structure Takashi Iwai <tiwai@suse.de> - 2017-07-13 09:40 +0200
Re: [alsa-devel] [PATCH] ASoC: fsl_asrc: constify snd_soc_dai_ops structure "Gustavo A. R. Silva" <garsilva@embeddedor.com> - 2017-07-13 09:40 +0200
Re: [alsa-devel] [PATCH] ASoC: fsl_asrc: constify snd_soc_dai_ops structure Mark Brown <broonie@kernel.org> - 2017-07-13 12:20 +0200
Re: [alsa-devel] [PATCH] ASoC: fsl_asrc: constify snd_soc_dai_ops structure "Gustavo A. R. Silva" <garsilva@embeddedor.com> - 2017-07-13 17:20 +0200
Re: [alsa-devel] [PATCH] ASoC: fsl_asrc: constify snd_soc_dai_ops structure Joe Perches <joe@perches.com> - 2017-07-13 20:20 +0200
Re: [alsa-devel] [PATCH] ASoC: fsl_asrc: constify snd_soc_dai_ops structure "Gustavo A. R. Silva" <garsilva@embeddedor.com> - 2017-07-13 23:20 +0200
Re: [alsa-devel] [PATCH] ASoC: fsl_asrc: constify snd_soc_dai_ops structure Joe Perches <joe@perches.com> - 2017-07-14 13:10 +0200
Re: [alsa-devel] [PATCH] ASoC: fsl_asrc: constify snd_soc_dai_ops structure Mark Brown <broonie@kernel.org> - 2017-07-14 13:30 +0200
Re: [alsa-devel] [PATCH] ASoC: fsl_asrc: constify snd_soc_dai_ops structure "Gustavo A. R. Silva" <garsilva@embeddedor.com> - 2017-07-17 06:30 +0200
Re: [alsa-devel] [PATCH] ASoC: fsl_asrc: constify snd_soc_dai_ops structure Mark Brown <broonie@kernel.org> - 2017-07-14 13:10 +0200
| From | "Gustavo A. R. Silva" <garsilva@embeddedor.com> |
|---|---|
| Date | 2017-07-13 09:30 +0200 |
| Subject | [PATCH] ASoC: fsl_asrc: constify snd_soc_dai_ops structure |
| Message-ID | <u2GJr-2BR-11@gated-at.bofh.it> |
This structure is only stored in the ops field of a snd_soc_dai_driver
structure. That field is declared const, so snd_soc_dai_ops structures
that have this property can be declared as const also.
Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com>
---
sound/soc/fsl/fsl_asrc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sound/soc/fsl/fsl_asrc.c b/sound/soc/fsl/fsl_asrc.c
index 8cfffa7..806d399 100644
--- a/sound/soc/fsl/fsl_asrc.c
+++ b/sound/soc/fsl/fsl_asrc.c
@@ -542,7 +542,7 @@ static int fsl_asrc_dai_trigger(struct snd_pcm_substream *substream, int cmd,
return 0;
}
-static struct snd_soc_dai_ops fsl_asrc_dai_ops = {
+static const struct snd_soc_dai_ops fsl_asrc_dai_ops = {
.hw_params = fsl_asrc_dai_hw_params,
.hw_free = fsl_asrc_dai_hw_free,
.trigger = fsl_asrc_dai_trigger,
--
2.5.0
[toc] | [next] | [standalone]
| From | Takashi Iwai <tiwai@suse.de> |
|---|---|
| Date | 2017-07-13 09:40 +0200 |
| Subject | Re: [alsa-devel] [PATCH] ASoC: fsl_asrc: constify snd_soc_dai_ops structure |
| Message-ID | <u2GT7-2EV-3@gated-at.bofh.it> |
| In reply to | #1686314 |
Gustavo,
please stop posting in this style. It's really annoying to see
spontaneously popping-up almost same patch for more than two hours
long.
If you have a series of the same fix patches, send them as a patch
set in a shot with a thread. git-send-email does it right.
I don't mind a couple of patches posted separately, but this is over
the limit.
thanks,
Takashi
On Thu, 13 Jul 2017 09:23:51 +0200,
Gustavo A. R. Silva wrote:
>
> This structure is only stored in the ops field of a snd_soc_dai_driver
> structure. That field is declared const, so snd_soc_dai_ops structures
> that have this property can be declared as const also.
>
> Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com>
> ---
> sound/soc/fsl/fsl_asrc.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/sound/soc/fsl/fsl_asrc.c b/sound/soc/fsl/fsl_asrc.c
> index 8cfffa7..806d399 100644
> --- a/sound/soc/fsl/fsl_asrc.c
> +++ b/sound/soc/fsl/fsl_asrc.c
> @@ -542,7 +542,7 @@ static int fsl_asrc_dai_trigger(struct snd_pcm_substream *substream, int cmd,
> return 0;
> }
>
> -static struct snd_soc_dai_ops fsl_asrc_dai_ops = {
> +static const struct snd_soc_dai_ops fsl_asrc_dai_ops = {
> .hw_params = fsl_asrc_dai_hw_params,
> .hw_free = fsl_asrc_dai_hw_free,
> .trigger = fsl_asrc_dai_trigger,
> --
> 2.5.0
>
> _______________________________________________
> Alsa-devel mailing list
> Alsa-devel@alsa-project.org
> http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
>
[toc] | [prev] | [next] | [standalone]
| From | "Gustavo A. R. Silva" <garsilva@embeddedor.com> |
|---|---|
| Date | 2017-07-13 09:40 +0200 |
| Subject | Re: [alsa-devel] [PATCH] ASoC: fsl_asrc: constify snd_soc_dai_ops structure |
| Message-ID | <u2GT7-2EV-5@gated-at.bofh.it> |
| In reply to | #1686319 |
Hi Takashi,
Quoting Takashi Iwai <tiwai@suse.de>:
> Gustavo,
>
> please stop posting in this style. It's really annoying to see
> spontaneously popping-up almost same patch for more than two hours
> long.
>
> If you have a series of the same fix patches, send them as a patch
> set in a shot with a thread. git-send-email does it right.
>
I will do that.
Thanks for the suggestion.
--
Gustavo A. R. Silva
> I don't mind a couple of patches posted separately, but this is over
> the limit.
>
>
> thanks,
>
> Takashi
>
> On Thu, 13 Jul 2017 09:23:51 +0200,
> Gustavo A. R. Silva wrote:
>>
>> This structure is only stored in the ops field of a snd_soc_dai_driver
>> structure. That field is declared const, so snd_soc_dai_ops structures
>> that have this property can be declared as const also.
>>
>> Signed-off-by: Gustavo A. R. Silva <garsilva@embeddedor.com>
>> ---
>> sound/soc/fsl/fsl_asrc.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/sound/soc/fsl/fsl_asrc.c b/sound/soc/fsl/fsl_asrc.c
>> index 8cfffa7..806d399 100644
>> --- a/sound/soc/fsl/fsl_asrc.c
>> +++ b/sound/soc/fsl/fsl_asrc.c
>> @@ -542,7 +542,7 @@ static int fsl_asrc_dai_trigger(struct
>> snd_pcm_substream *substream, int cmd,
>> return 0;
>> }
>>
>> -static struct snd_soc_dai_ops fsl_asrc_dai_ops = {
>> +static const struct snd_soc_dai_ops fsl_asrc_dai_ops = {
>> .hw_params = fsl_asrc_dai_hw_params,
>> .hw_free = fsl_asrc_dai_hw_free,
>> .trigger = fsl_asrc_dai_trigger,
>> --
>> 2.5.0
>>
>> _______________________________________________
>> Alsa-devel mailing list
>> Alsa-devel@alsa-project.org
>> http://mailman.alsa-project.org/mailman/listinfo/alsa-devel
>>
[toc] | [prev] | [next] | [standalone]
| From | Mark Brown <broonie@kernel.org> |
|---|---|
| Date | 2017-07-13 12:20 +0200 |
| Subject | Re: [alsa-devel] [PATCH] ASoC: fsl_asrc: constify snd_soc_dai_ops structure |
| Message-ID | <u2JnY-4lu-23@gated-at.bofh.it> |
| In reply to | #1686319 |
[Multipart message — attachments visible in raw view] — view raw
On Thu, Jul 13, 2017 at 09:32:41AM +0200, Takashi Iwai wrote: > please stop posting in this style. It's really annoying to see > spontaneously popping-up almost same patch for more than two hours > long. > If you have a series of the same fix patches, send them as a patch > set in a shot with a thread. git-send-email does it right. > I don't mind a couple of patches posted separately, but this is over > the limit. Or at least just collect them up and send them all at one time even if not as a single thread (you don't want to CC everyone affected by a single patch in the set on everything, that's harder to avoid when sending a series via git, but it can be confusing to get one item in a large patch series without context).
[toc] | [prev] | [next] | [standalone]
| From | "Gustavo A. R. Silva" <garsilva@embeddedor.com> |
|---|---|
| Date | 2017-07-13 17:20 +0200 |
| Subject | Re: [alsa-devel] [PATCH] ASoC: fsl_asrc: constify snd_soc_dai_ops structure |
| Message-ID | <u2O4i-7hE-13@gated-at.bofh.it> |
| In reply to | #1686436 |
Hi Mark, Quoting Mark Brown <broonie@kernel.org>: > On Thu, Jul 13, 2017 at 09:32:41AM +0200, Takashi Iwai wrote: > >> please stop posting in this style. It's really annoying to see >> spontaneously popping-up almost same patch for more than two hours >> long. > >> If you have a series of the same fix patches, send them as a patch >> set in a shot with a thread. git-send-email does it right. > >> I don't mind a couple of patches posted separately, but this is over >> the limit. > > Or at least just collect them up and send them all at one time even if > not as a single thread (you don't want to CC everyone affected by a > single patch in the set on everything, that's harder to avoid when > sending a series via git, but it can be confusing to get one item in a > large patch series without context). I like this idea better. I will do so next time. :) Thank you -- Gustavo A. R. Silva
[toc] | [prev] | [next] | [standalone]
| From | Joe Perches <joe@perches.com> |
|---|---|
| Date | 2017-07-13 20:20 +0200 |
| Subject | Re: [alsa-devel] [PATCH] ASoC: fsl_asrc: constify snd_soc_dai_ops structure |
| Message-ID | <u2QSv-Bw-27@gated-at.bofh.it> |
| In reply to | #1686615 |
On Thu, 2017-07-13 at 10:18 -0500, Gustavo A. R. Silva wrote: > Hi Mark, > > Quoting Mark Brown <broonie@kernel.org>: > > > On Thu, Jul 13, 2017 at 09:32:41AM +0200, Takashi Iwai wrote: > > > > > please stop posting in this style. It's really annoying to see > > > spontaneously popping-up almost same patch for more than two hours > > > long. > > > If you have a series of the same fix patches, send them as a patch > > > set in a shot with a thread. git-send-email does it right. > > > I don't mind a couple of patches posted separately, but this is over > > > the limit. > > > > Or at least just collect them up and send them all at one time even if > > not as a single thread (you don't want to CC everyone affected by a > > single patch in the set on everything, that's harder to avoid when > > sending a series via git, but it can be confusing to get one item in a > > large patch series without context). > > I like this idea better. I will do so next time. :) I don't it's better. It's not that confusing if the 0/n patch cover letter is cc'd to all the appropriate mailing lists and all the [1..n]/n patches are sent with in-reply-to of the cover letter and send to the maintainers and appropriate mailing lists.
[toc] | [prev] | [next] | [standalone]
| From | "Gustavo A. R. Silva" <garsilva@embeddedor.com> |
|---|---|
| Date | 2017-07-13 23:20 +0200 |
| Subject | Re: [alsa-devel] [PATCH] ASoC: fsl_asrc: constify snd_soc_dai_ops structure |
| Message-ID | <u2TGG-2pl-17@gated-at.bofh.it> |
| In reply to | #1686833 |
Hi Joe, Quoting Joe Perches <joe@perches.com>: > On Thu, 2017-07-13 at 10:18 -0500, Gustavo A. R. Silva wrote: >> Hi Mark, >> >> Quoting Mark Brown <broonie@kernel.org>: >> >> > On Thu, Jul 13, 2017 at 09:32:41AM +0200, Takashi Iwai wrote: >> > >> > > please stop posting in this style. It's really annoying to see >> > > spontaneously popping-up almost same patch for more than two hours >> > > long. >> > > If you have a series of the same fix patches, send them as a patch >> > > set in a shot with a thread. git-send-email does it right. >> > > I don't mind a couple of patches posted separately, but this is over >> > > the limit. >> > >> > Or at least just collect them up and send them all at one time even if >> > not as a single thread (you don't want to CC everyone affected by a >> > single patch in the set on everything, that's harder to avoid when >> > sending a series via git, but it can be confusing to get one item in a >> > large patch series without context). >> >> I like this idea better. I will do so next time. :) > > I don't it's better. > > It's not that confusing if the 0/n patch cover letter is cc'd > to all the appropriate mailing lists and all the [1..n]/n > patches are sent with in-reply-to of the cover letter and > send to the maintainers and appropriate mailing lists. I ended up following your suggestions: https://lkml.org/lkml/2017/7/13/739 (Notice that these are new patches. Not related to the ones I previously sent) Much appreciated Thanks! -- Gustavo A. R. Silva
[toc] | [prev] | [next] | [standalone]
| From | Joe Perches <joe@perches.com> |
|---|---|
| Date | 2017-07-14 13:10 +0200 |
| Subject | Re: [alsa-devel] [PATCH] ASoC: fsl_asrc: constify snd_soc_dai_ops structure |
| Message-ID | <u36DT-2z6-1@gated-at.bofh.it> |
| In reply to | #1686833 |
On Fri, 2017-07-14 at 12:02 +0100, Mark Brown wrote: > On Thu, Jul 13, 2017 at 11:18:11AM -0700, Joe Perches wrote: > > > I don't it's better. > > It's not that confusing if the 0/n patch cover letter is cc'd > > to all the appropriate mailing lists and all the [1..n]/n > > patches are sent with in-reply-to of the cover letter and > > send to the maintainers and appropriate mailing lists. > > With large serieses like Gustavo is sending the CC list can easily hit > the points where mailing lists start blocking it, and the individual > pathces really do need to go to the relevant people so they have sight > of them. I agree and that's what I wrote.
[toc] | [prev] | [next] | [standalone]
| From | Mark Brown <broonie@kernel.org> |
|---|---|
| Date | 2017-07-14 13:30 +0200 |
| Subject | Re: [alsa-devel] [PATCH] ASoC: fsl_asrc: constify snd_soc_dai_ops structure |
| Message-ID | <u36Xf-2Gt-1@gated-at.bofh.it> |
| In reply to | #1687248 |
[Multipart message — attachments visible in raw view] — view raw
On Fri, Jul 14, 2017 at 04:08:21AM -0700, Joe Perches wrote: > On Fri, 2017-07-14 at 12:02 +0100, Mark Brown wrote: > > On Thu, Jul 13, 2017 at 11:18:11AM -0700, Joe Perches wrote: > > > I don't it's better. > > > It's not that confusing if the 0/n patch cover letter is cc'd > > > to all the appropriate mailing lists and all the [1..n]/n > > > patches are sent with in-reply-to of the cover letter and > > > send to the maintainers and appropriate mailing lists. > > With large serieses like Gustavo is sending the CC list can easily hit > > the points where mailing lists start blocking it, and the individual > > pathces really do need to go to the relevant people so they have sight > > of them. > I agree and that's what I wrote. The set of people who should have sight of the patches is wider than just the maintainers.
[toc] | [prev] | [next] | [standalone]
| From | "Gustavo A. R. Silva" <garsilva@embeddedor.com> |
|---|---|
| Date | 2017-07-17 06:30 +0200 |
| Subject | Re: [alsa-devel] [PATCH] ASoC: fsl_asrc: constify snd_soc_dai_ops structure |
| Message-ID | <u45Pr-cf-3@gated-at.bofh.it> |
| In reply to | #1687269 |
Hi Mark, Joe, On 07/14/2017 06:25 AM, Mark Brown wrote: > On Fri, Jul 14, 2017 at 04:08:21AM -0700, Joe Perches wrote: >> On Fri, 2017-07-14 at 12:02 +0100, Mark Brown wrote: >>> On Thu, Jul 13, 2017 at 11:18:11AM -0700, Joe Perches wrote: >>>> I don't it's better. >>>> It's not that confusing if the 0/n patch cover letter is cc'd >>>> to all the appropriate mailing lists and all the [1..n]/n >>>> patches are sent with in-reply-to of the cover letter and >>>> send to the maintainers and appropriate mailing lists. >>> With large serieses like Gustavo is sending the CC list can easily hit >>> the points where mailing lists start blocking it, and the individual >>> pathces really do need to go to the relevant people so they have sight >>> of them. >> I agree and that's what I wrote. > The set of people who should have sight of the patches is wider than > just the maintainers. I'm running get_maintainer.pl in the following way in order to get all the supporters, maintainers and lists: $ scripts/get_maintainer.pl --nokeywords --nogit --nogit-fallback <file> Thank you -- Gustavo A. R. Silva
[toc] | [prev] | [next] | [standalone]
| From | Mark Brown <broonie@kernel.org> |
|---|---|
| Date | 2017-07-14 13:10 +0200 |
| Subject | Re: [alsa-devel] [PATCH] ASoC: fsl_asrc: constify snd_soc_dai_ops structure |
| Message-ID | <u36DT-2z6-3@gated-at.bofh.it> |
| In reply to | #1686833 |
[Multipart message — attachments visible in raw view] — view raw
On Thu, Jul 13, 2017 at 11:18:11AM -0700, Joe Perches wrote: > I don't it's better. > It's not that confusing if the 0/n patch cover letter is cc'd > to all the appropriate mailing lists and all the [1..n]/n > patches are sent with in-reply-to of the cover letter and > send to the maintainers and appropriate mailing lists. With large serieses like Gustavo is sending the CC list can easily hit the points where mailing lists start blocking it, and the individual pathces really do need to go to the relevant people so they have sight of them.
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web