[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <BL0PR11MB3234FB531897D8A012055F34E2B59@BL0PR11MB3234.namprd11.prod.outlook.com>
Date: Tue, 2 Feb 2021 07:21:36 +0000
From: "C, Udhayakumar" <udhayakumar.c@...el.com>
To: Joe Perches <joe@...ches.com>,
"mgross@...ux.intel.com" <mgross@...ux.intel.com>,
"markgross@...nel.org" <markgross@...nel.org>,
"arnd@...db.de" <arnd@...db.de>, "bp@...e.de" <bp@...e.de>,
"damien.lemoal@....com" <damien.lemoal@....com>,
"dragan.cvetic@...inx.com" <dragan.cvetic@...inx.com>,
"gregkh@...uxfoundation.org" <gregkh@...uxfoundation.org>,
"corbet@....net" <corbet@....net>,
"palmerdabbelt@...gle.com" <palmerdabbelt@...gle.com>,
"paul.walmsley@...ive.com" <paul.walmsley@...ive.com>,
"peng.fan@....com" <peng.fan@....com>,
"robh+dt@...nel.org" <robh+dt@...nel.org>,
"shawnguo@...nel.org" <shawnguo@...nel.org>,
"jassisinghbrar@...il.com" <jassisinghbrar@...il.com>
CC: "linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
"C@...ux.intel.com" <C@...ux.intel.com>
Subject: RE: [PATCH v3 28/34] misc: Intel tsens IA host driver.
> On Fri, 2021-01-29 at 18:20 -0800, mgross@...ux.intel.com wrote:
> > From: "C, Udhayakumar" <udhayakumar.c@...el.com>
> >
> > Add Intel tsens IA host driver for Intel Edge.AI Computer Vision
> > platforms.
> []
> > diff --git a/drivers/misc/intel_tsens/intel_tsens_host.c
> > b/drivers/misc/intel_tsens/intel_tsens_host.c
> []
> > +static int tsens_i2c_smbus_read_byte_data(struct i2c_client *i2c, u8
> command,
> > + u8 *i2c_val)
> > +{
> > + union i2c_smbus_data data;
> > + int status;
> > +
> > + status = i2c_smbus_xfer(i2c->adapter, i2c->addr, i2c->flags,
> > + I2C_SMBUS_READ, command,
> > + I2C_SMBUS_BYTE_DATA, &data);
>
> this can fail
>
> > + *i2c_val = data.byte;
>
> Is it appropriate to set the value if it failed and data was not initialized?
>
Thanks for the feedback, I will update as below in next patch version.
if (!status)
*i2c_val = data.byte;
> > + return status;
> > +}
> > +
> > +/**
> > + * intel_tsens_get_temp - get updated temperatue
>
> Might want to use codespell on all files.
Yes we have ran codespell before submitting, looks like codespell dictionary doesn't have replacement for ' temperatue'.
It has only below words.
temerature->temperature
tempertaure->temperature
temperture->temperature
--
udhay
>
Powered by blists - more mailing lists