From: Takashi Iwai <tiwai@suse.de>
To: shijm <junming@nfschina.com>
Cc: Linux-kernel@vger.kernel.org
Subject: Re: [PATCH] sound:remove unnecessary conversions
Date: Fri, 30 Sep 2022 10:23:02 +0200 [thread overview]
Message-ID: <87k05l6zkp.wl-tiwai@suse.de> (raw)
In-Reply-To: <20220930025244.9762-1-junming@nfschina.com>
On Fri, 30 Sep 2022 04:52:44 +0200,
shijm wrote:
>
> From: Shi junming <junming@nfschina.com>
>
> remove unnecessary conversions
>
> Signed-off-by: Shi junming <junming@nfschina.com>
The code changes themselves are fine, but this patch has more room for
(trivial) improvements.
First off, it won't hurt if you give more text in the patch
description. Only from this one line text, it's not entirely clear
what the patch is doing and how.
In this case, it might be better understandable to use a term "cast"
(or "type cast") instead of "conversion", too. And, a sentence should
start with a capital letter.
The subject line for sound subsystem should be with "ALSA:" prefix,
and in this case, "ALSA: pcm: xxx" would be more suitable (the subject
prefix depends on the system, see other git logs).
Last but not least, at the next submission, please put the
corresponding subsystem mailing list (alsa-devel ML) to Cc, too.
thanks,
Takashi
> ---
> include/sound/pcm.h | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/include/sound/pcm.h b/include/sound/pcm.h
> index 6b99310b5b88..0530cfa08892 100644
> --- a/include/sound/pcm.h
> +++ b/include/sound/pcm.h
> @@ -1344,7 +1344,7 @@ snd_pcm_sgbuf_get_chunk_size(struct snd_pcm_substream *substream,
> */
> static inline void snd_pcm_mmap_data_open(struct vm_area_struct *area)
> {
> - struct snd_pcm_substream *substream = (struct snd_pcm_substream *)area->vm_private_data;
> + struct snd_pcm_substream *substream = area->vm_private_data;
> atomic_inc(&substream->mmap_count);
> }
>
> @@ -1356,7 +1356,7 @@ static inline void snd_pcm_mmap_data_open(struct vm_area_struct *area)
> */
> static inline void snd_pcm_mmap_data_close(struct vm_area_struct *area)
> {
> - struct snd_pcm_substream *substream = (struct snd_pcm_substream *)area->vm_private_data;
> + struct snd_pcm_substream *substream = area->vm_private_data;
> atomic_dec(&substream->mmap_count);
> }
>
> --
> 2.18.2
>
next prev parent reply other threads:[~2022-09-30 8:23 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-09-30 2:52 shijm
2022-09-30 8:23 ` Takashi Iwai [this message]
2022-09-30 2:55 shijm
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87k05l6zkp.wl-tiwai@suse.de \
--to=tiwai@suse.de \
--cc=Linux-kernel@vger.kernel.org \
--cc=junming@nfschina.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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®