lkml.org 
[lkml]   [2019]   [Mar]   [29]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
Date
SubjectRe: [PATCH v5] iio: cros_ec: Add lid angle driver
On Fri, Mar 29, 2019 at 1:17 PM Guenter Roeck <groeck@google.com> wrote:
>
> On Fri, Mar 29, 2019 at 1:08 PM Gwendal Grignou <gwendal@chromium.org> wrote:
> >
> > Add a IIO driver that reports the angle between the lid and the base for
> > ChromeOS convertible device.
...
> > --- a/drivers/mfd/cros_ec_dev.c
> > +++ b/drivers/mfd/cros_ec_dev.c
> > @@ -297,13 +297,15 @@ static void cros_ec_sensors_register(struct
> > cros_ec_dev *ec)
> >
> > resp = (struct ec_response_motion_sense *)msg->data;
> > sensor_num = resp->dump.sensor_count;
> > - /* Allocate 1 extra sensors in FIFO are needed */
> > - sensor_cells = kcalloc(sensor_num + 1, sizeof(struct mfd_cell),
> > + /*
> > + * Allocate 2 extra sensors if lid angle sensor and/or FIFO are needed.
> > + */
> > + sensor_cells = kcalloc(sensor_num + 2, sizeof(struct mfd_cell),
> > GFP_KERNEL);
> > if (sensor_cells == NULL)
> > goto error;
> >
> > - sensor_platforms = kcalloc(sensor_num + 1,
> > + sensor_platforms = kcalloc(sensor_num,
>
> I still don't understand why the "+ 1" is no longer needed. It seems
> to me that it would have to change to "+ 2".
"+1" was never needed to begin with FIFO device will never use a
struct cros_ec_sensor_platform. I mentioned it earlier:
https://www.spinics.net/lists/linux-iio/msg43157.html

Gwendal.
>
> Guenter
>
> > sizeof(struct cros_ec_sensor_platform),
> > GFP_KERNEL);
> > if (sensor_platforms == NULL)
> > @@ -363,6 +365,11 @@ static void cros_ec_sensors_register(struct
> > cros_ec_dev *ec)
> > sensor_cells[id].name = "cros-ec-ring";
> > id++;
> > }
> > + if (cros_ec_check_features(ec,
> > + EC_FEATURE_REFINED_TABLET_MODE_HYSTERESIS)) {
> > + sensor_cells[id].name = "cros-ec-lid-angle";
> > + id++;
> > + }
> >
> > ret = mfd_add_devices(ec->dev, 0, sensor_cells, id,
> > NULL, 0, NULL);
> > --
> > 2.21.0.360.g471c308f928-goog

\
 
 \ /
  Last update: 2019-03-29 23:38    [W:0.065 / U:0.784 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site