From: Gaston Gonzalez <gascoar@gmail.com>
To: Greg KH <gregkh@linuxfoundation.org>
Cc: linux-staging@lists.linux.dev, nsaenz@kernel.org,
f.fainelli@gmail.com, rjui@broadcom.com, sbranden@broadcom.com,
bcm-kernel-feedback-list@broadcom.com,
juerg.haefliger@canonical.com, rdunlap@infradead.org,
dave.stevenson@raspberrypi.com, stefan.wahren@i2se.com,
unixbhaskar@gmail.com, mitaliborkar810@gmail.com,
phil@raspberrypi.com, linux-rpi-kernel@lists.infradead.org,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, gascoar@gmail.com
Subject: Re: [PATCH 2/4] staging: vc04_services: avoid the use of typedef for function pointers
Date: Tue, 21 Dec 2021 17:41:46 -0300 [thread overview]
Message-ID: <YcI8ChRmECkk/6RV@debianG> (raw)
In-Reply-To: <YcFyASAYo6yimT8W@kroah.com>
On Tue, Dec 21, 2021 at 07:19:45AM +0100, Greg KH wrote:
> On Mon, Dec 20, 2021 at 06:29:12PM -0300, Gaston Gonzalez wrote:
> > Replace typedef bm2835_mmal_v4l2_ctrl_cb with equivalent declaration to
> > better align with the linux kernel coding style.
> >
> > Signed-off-by: Gaston Gonzalez <gascoar@gmail.com>
> > ---
> > .../vc04_services/bcm2835-camera/controls.c | 76 +++++++++----------
> > 1 file changed, 35 insertions(+), 41 deletions(-)
> >
> > diff --git a/drivers/staging/vc04_services/bcm2835-camera/controls.c b/drivers/staging/vc04_services/bcm2835-camera/controls.c
> > index b096a12387f7..7782742396fc 100644
> > --- a/drivers/staging/vc04_services/bcm2835-camera/controls.c
> > +++ b/drivers/staging/vc04_services/bcm2835-camera/controls.c
> > @@ -65,13 +65,6 @@ enum bm2835_mmal_ctrl_type {
> > MMAL_CONTROL_TYPE_CLUSTER, /* special cluster entry */
> > };
> >
> > -struct bm2835_mmal_v4l2_ctrl;
> > -
> > -typedef int(bm2835_mmal_v4l2_ctrl_cb)(
> > - struct bm2835_mmal_dev *dev,
> > - struct v4l2_ctrl *ctrl,
> > - const struct bm2835_mmal_v4l2_ctrl *mmal_ctrl);
>
> Function pointer typedefs are ok, if they are needed.
>
> > -
> > struct bm2835_mmal_v4l2_ctrl {
> > u32 id; /* v4l2 control identifier */
> > enum bm2835_mmal_ctrl_type type;
> > @@ -84,7 +77,8 @@ struct bm2835_mmal_v4l2_ctrl {
> > u64 step; /* step size of the control */
> > const s64 *imenu; /* integer menu array */
> > u32 mmal_id; /* mmal parameter id */
> > - bm2835_mmal_v4l2_ctrl_cb *setter;
> > + int (*bm2835_mmal_v4l2_ctrl_cb)(struct bm2835_mmal_dev *dev, struct v4l2_ctrl *ctrl,
> > + const struct bm2835_mmal_v4l2_ctrl *mmal_ctrl);
>
> No need to rename this function pointer, why not keep it at "setter"?
> That would make this patch much smaller and more obvious.
>
Ok, will do that in v2.
thanks,
Gaston
> thanks,
>
> greg k-h
>
WARNING: multiple messages have this Message-ID (diff)
From: Gaston Gonzalez <gascoar@gmail.com>
To: Greg KH <gregkh@linuxfoundation.org>
Cc: linux-staging@lists.linux.dev, nsaenz@kernel.org,
f.fainelli@gmail.com, rjui@broadcom.com, sbranden@broadcom.com,
bcm-kernel-feedback-list@broadcom.com,
juerg.haefliger@canonical.com, rdunlap@infradead.org,
dave.stevenson@raspberrypi.com, stefan.wahren@i2se.com,
unixbhaskar@gmail.com, mitaliborkar810@gmail.com,
phil@raspberrypi.com, linux-rpi-kernel@lists.infradead.org,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, gascoar@gmail.com
Subject: Re: [PATCH 2/4] staging: vc04_services: avoid the use of typedef for function pointers
Date: Tue, 21 Dec 2021 17:41:46 -0300 [thread overview]
Message-ID: <YcI8ChRmECkk/6RV@debianG> (raw)
In-Reply-To: <YcFyASAYo6yimT8W@kroah.com>
On Tue, Dec 21, 2021 at 07:19:45AM +0100, Greg KH wrote:
> On Mon, Dec 20, 2021 at 06:29:12PM -0300, Gaston Gonzalez wrote:
> > Replace typedef bm2835_mmal_v4l2_ctrl_cb with equivalent declaration to
> > better align with the linux kernel coding style.
> >
> > Signed-off-by: Gaston Gonzalez <gascoar@gmail.com>
> > ---
> > .../vc04_services/bcm2835-camera/controls.c | 76 +++++++++----------
> > 1 file changed, 35 insertions(+), 41 deletions(-)
> >
> > diff --git a/drivers/staging/vc04_services/bcm2835-camera/controls.c b/drivers/staging/vc04_services/bcm2835-camera/controls.c
> > index b096a12387f7..7782742396fc 100644
> > --- a/drivers/staging/vc04_services/bcm2835-camera/controls.c
> > +++ b/drivers/staging/vc04_services/bcm2835-camera/controls.c
> > @@ -65,13 +65,6 @@ enum bm2835_mmal_ctrl_type {
> > MMAL_CONTROL_TYPE_CLUSTER, /* special cluster entry */
> > };
> >
> > -struct bm2835_mmal_v4l2_ctrl;
> > -
> > -typedef int(bm2835_mmal_v4l2_ctrl_cb)(
> > - struct bm2835_mmal_dev *dev,
> > - struct v4l2_ctrl *ctrl,
> > - const struct bm2835_mmal_v4l2_ctrl *mmal_ctrl);
>
> Function pointer typedefs are ok, if they are needed.
>
> > -
> > struct bm2835_mmal_v4l2_ctrl {
> > u32 id; /* v4l2 control identifier */
> > enum bm2835_mmal_ctrl_type type;
> > @@ -84,7 +77,8 @@ struct bm2835_mmal_v4l2_ctrl {
> > u64 step; /* step size of the control */
> > const s64 *imenu; /* integer menu array */
> > u32 mmal_id; /* mmal parameter id */
> > - bm2835_mmal_v4l2_ctrl_cb *setter;
> > + int (*bm2835_mmal_v4l2_ctrl_cb)(struct bm2835_mmal_dev *dev, struct v4l2_ctrl *ctrl,
> > + const struct bm2835_mmal_v4l2_ctrl *mmal_ctrl);
>
> No need to rename this function pointer, why not keep it at "setter"?
> That would make this patch much smaller and more obvious.
>
Ok, will do that in v2.
thanks,
Gaston
> thanks,
>
> greg k-h
>
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2021-12-21 20:41 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-12-20 21:29 [PATCH 0/4] staging: vc04_services: avoid the use of typedef for function pointers Gaston Gonzalez
2021-12-20 21:29 ` Gaston Gonzalez
2021-12-20 21:29 ` [PATCH 1/4] " Gaston Gonzalez
2021-12-20 21:29 ` Gaston Gonzalez
2021-12-20 21:29 ` [PATCH 2/4] " Gaston Gonzalez
2021-12-20 21:29 ` Gaston Gonzalez
2021-12-20 23:28 ` Stefan Wahren
2021-12-20 23:28 ` Stefan Wahren
2021-12-21 6:19 ` Greg KH
2021-12-21 6:19 ` Greg KH
2021-12-21 20:41 ` Gaston Gonzalez [this message]
2021-12-21 20:41 ` Gaston Gonzalez
2021-12-20 21:29 ` [PATCH 3/4] " Gaston Gonzalez
2021-12-20 21:29 ` Gaston Gonzalez
2021-12-21 6:22 ` Greg KH
2021-12-21 6:22 ` Greg KH
2021-12-21 20:43 ` Gaston Gonzalez
2021-12-21 20:43 ` Gaston Gonzalez
2021-12-20 21:29 ` [PATCH 4/4] staging: vc04_services: update TODO file Gaston Gonzalez
2021-12-20 21:29 ` Gaston Gonzalez
2021-12-21 6:20 ` [PATCH 0/4] staging: vc04_services: avoid the use of typedef for function pointers Greg KH
2021-12-21 6:20 ` Greg KH
2021-12-21 20:40 ` Gaston Gonzalez
2021-12-21 20:40 ` Gaston Gonzalez
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=YcI8ChRmECkk/6RV@debianG \
--to=gascoar@gmail.com \
--cc=bcm-kernel-feedback-list@broadcom.com \
--cc=dave.stevenson@raspberrypi.com \
--cc=f.fainelli@gmail.com \
--cc=gregkh@linuxfoundation.org \
--cc=juerg.haefliger@canonical.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-rpi-kernel@lists.infradead.org \
--cc=linux-staging@lists.linux.dev \
--cc=mitaliborkar810@gmail.com \
--cc=nsaenz@kernel.org \
--cc=phil@raspberrypi.com \
--cc=rdunlap@infradead.org \
--cc=rjui@broadcom.com \
--cc=sbranden@broadcom.com \
--cc=stefan.wahren@i2se.com \
--cc=unixbhaskar@gmail.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.