From mboxrd@z Thu Jan 1 00:00:00 1970 From: Lee Jones Subject: Re: [PATCH 08/10] mfd: cros_ec: cleanup: Remove EC wrapper functions Date: Wed, 18 Jun 2014 08:40:49 +0100 Message-ID: <20140618074049.GD21030@lee--X1> References: <1402954800-28215-1-git-send-email-dianders@chromium.org> <1402954800-28215-9-git-send-email-dianders@chromium.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: QUOTED-PRINTABLE Return-path: Content-Disposition: inline In-Reply-To: Sender: linux-samsung-soc-owner@vger.kernel.org To: Doug Anderson Cc: Simon Glass , Andrew Bresticker , Stephen Warren , Olof Johansson , Sonny Rao , linux-samsung-soc , Javier Martinez Canillas , Bill Richardson , Wolfram Sang , Mark Brown , Dmitry Torokhov , Samuel Ortiz , Vincent Palatin , Geert Uytterhoeven , "linux-i2c@vger.kernel.org" , lk , "linux-input@vger.kernel.org" List-Id: linux-i2c@vger.kernel.org > >> diff --git a/drivers/input/keyboard/cros_ec_keyb.c b/drivers/input= /keyboard/cros_ec_keyb.c > >> index 4083796..dc37b6b 100644 > >> --- a/drivers/input/keyboard/cros_ec_keyb.c > >> +++ b/drivers/input/keyboard/cros_ec_keyb.c > >> @@ -191,8 +191,18 @@ static void cros_ec_keyb_close(struct input_d= ev *dev) > >> > >> static int cros_ec_keyb_get_state(struct cros_ec_keyb *ckdev, uin= t8_t *kb_state) > >> { > >> - return ckdev->ec->command_recv(ckdev->ec, EC_CMD_MKBP_STAT= E, > >> - kb_state, ckdev->cols); > >> + int ret; > >> + struct cros_ec_command msg =3D { > >> + .version =3D 0, > >> + .command =3D EC_CMD_MKBP_STATE, > >> + .outdata =3D NULL, > >> + .outsize =3D 0, > >> + .indata =3D kb_state, > >> + .insize =3D ckdev->cols, > >> + }; > >> + > >> + ret =3D ckdev->ec->cmd_xfer(ckdev->ec, &msg); > > > > Do we need ret? >=20 > No. If you wish I will spin without it. Let me know. >=20 > Note that locally this code includes a comment between the above and = the return: > /* FIXME: This assumes msg.result =3D=3D EC_RES_SUCCESS */ >=20 > Given that this is not a new problem introduced in this code, that it > still hasn't been fixed locally in the ChromeOS tree, and that > generally FIXMEs don't seem to be left in the code upstream, I left i= t > out. As you're re-spinning anyway, please fix this and add my: Acked-by: Lee Jones > >> diff --git a/include/linux/mfd/cros_ec.h b/include/linux/mfd/cros_= ec.h > >> index 2b0c598..60c0880 100644 > >> --- a/include/linux/mfd/cros_ec.h > >> +++ b/include/linux/mfd/cros_ec.h > >> @@ -63,9 +63,10 @@ struct cros_ec_command { > >> * @was_wake_device: true if this device was set to wake the syst= em from > >> * sleep at the last suspend > >> * @event_notifier: interrupt event notifier for transport device= s > >> - * @command_send: send a command > >> - * @command_recv: receive a response > >> - * @command_sendrecv: send a command and receive a response > >> + * @cmd_xfer: send command to EC and get response > >> + * Returns 0 if the communication succeeded, but that doesn't= mean the EC > >> + * was happy with the command it got. Caller should check msg= =2Eresult for > >> + * the EC's result code. > >> * > >> * @priv: Private data > >> * @irq: Interrupt to use > >> @@ -83,7 +84,6 @@ struct cros_ec_command { > >> * @parent: pointer to parent device (e.g. i2c or spi device) > >> * @wake_enabled: true if this device can wake the system from sl= eep > >> * @lock: one transaction at a time > >> - * @cmd_xfer: low-level channel to the EC > >> */ > >> struct cros_ec_device { > >> > >> @@ -94,13 +94,8 @@ struct cros_ec_device { > >> bool was_wake_device; > >> struct class *cros_class; > >> struct blocking_notifier_head event_notifier; > >> - int (*command_send)(struct cros_ec_device *ec, > >> - uint16_t cmd, void *out_buf, int out_l= en); > >> - int (*command_recv)(struct cros_ec_device *ec, > >> - uint16_t cmd, void *in_buf, int in_len= ); > >> - int (*command_sendrecv)(struct cros_ec_device *ec, > >> - uint16_t cmd, void *out_buf, int o= ut_len, > >> - void *in_buf, int in_len); > >> + int (*cmd_xfer)(struct cros_ec_device *ec, > >> + struct cros_ec_command *msg); > >> > >> /* These are used to implement the platform-specific inter= face */ > >> void *priv; > >> @@ -112,8 +107,6 @@ struct cros_ec_device { > >> struct device *parent; > >> bool wake_enabled; > >> struct mutex lock; > >> - int (*cmd_xfer)(struct cros_ec_device *ec, > >> - struct cros_ec_command *msg); > > > > Seems odd - maybe this line move of cmd_xfer() should be in an earl= ier patch? >=20 > It got moved from "private" to public. Bill reorganized all the > public stuff at the top and the private at the bottom. >=20 > -Doug --=20 Lee Jones Linaro STMicroelectronics Landing Team Lead Linaro.org =E2=94=82 Open source software for ARM SoCs =46ollow Linaro: Facebook | Twitter | Blog