* [PATCH] i2c-algo-bit: Cleanup bus_test calling convention
@ 2011-04-15 9:13 Jean Delvare
[not found] ` <20110415111323.51bef2ac-R0o5gVi9kd7kN2dkZ6Wm7A@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Jean Delvare @ 2011-04-15 9:13 UTC (permalink / raw)
To: Linux I2C; +Cc: Alex Deucher
Now that we pass the i2c_adapter as the first parameter, it makes
little sense to pass its name separately as the second.
Signed-off-by: Jean Delvare <khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org>
Cc: Alex Deucher <alexdeucher-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
---
Alex, I think it would make sense to merge this into your own patch?
drivers/i2c/algos/i2c-algo-bit.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
--- linux-2.6.39-rc3.orig/drivers/i2c/algos/i2c-algo-bit.c 2011-04-15 10:47:39.000000000 +0200
+++ linux-2.6.39-rc3/drivers/i2c/algos/i2c-algo-bit.c 2011-04-15 11:05:09.000000000 +0200
@@ -232,9 +232,10 @@ static int i2c_inb(struct i2c_adapter *i
* Sanity check for the adapter hardware - check the reaction of
* the bus lines only if it seems to be idle.
*/
-static int test_bus(struct i2c_adapter *i2c_adap, char *name)
+static int test_bus(struct i2c_adapter *i2c_adap)
{
struct i2c_algo_bit_data *adap = i2c_adap->algo_data;
+ const char *name = i2c_adap->name;
int scl, sda, ret;
if (adap->pre_xfer) {
@@ -622,7 +623,7 @@ static int __i2c_bit_add_bus(struct i2c_
int ret;
if (bit_test) {
- ret = test_bus(adap, adap->name);
+ ret = test_bus(adap);
if (ret < 0)
return -ENODEV;
}
--
Jean Delvare
^ permalink raw reply [flat|nested] 3+ messages in thread[parent not found: <20110415111323.51bef2ac-R0o5gVi9kd7kN2dkZ6Wm7A@public.gmane.org>]
* Re: [PATCH] i2c-algo-bit: Cleanup bus_test calling convention [not found] ` <20110415111323.51bef2ac-R0o5gVi9kd7kN2dkZ6Wm7A@public.gmane.org> @ 2011-04-15 15:57 ` Alex Deucher [not found] ` <BANLkTikBTN-3n0AUUxM2bgMKzME8zznycg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> 0 siblings, 1 reply; 3+ messages in thread From: Alex Deucher @ 2011-04-15 15:57 UTC (permalink / raw) To: Jean Delvare; +Cc: Linux I2C On Fri, Apr 15, 2011 at 5:13 AM, Jean Delvare <khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org> wrote: > Now that we pass the i2c_adapter as the first parameter, it makes > little sense to pass its name separately as the second. > > Signed-off-by: Jean Delvare <khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org> > Cc: Alex Deucher <alexdeucher-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > --- > Alex, I think it would make sense to merge this into your own patch? > Yeah, looks good to me. Do you want to merge them or do you want me to send new patch? Reviewed-by: Alex Deucher <alexdeucher-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > drivers/i2c/algos/i2c-algo-bit.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > --- linux-2.6.39-rc3.orig/drivers/i2c/algos/i2c-algo-bit.c 2011-04-15 10:47:39.000000000 +0200 > +++ linux-2.6.39-rc3/drivers/i2c/algos/i2c-algo-bit.c 2011-04-15 11:05:09.000000000 +0200 > @@ -232,9 +232,10 @@ static int i2c_inb(struct i2c_adapter *i > * Sanity check for the adapter hardware - check the reaction of > * the bus lines only if it seems to be idle. > */ > -static int test_bus(struct i2c_adapter *i2c_adap, char *name) > +static int test_bus(struct i2c_adapter *i2c_adap) > { > struct i2c_algo_bit_data *adap = i2c_adap->algo_data; > + const char *name = i2c_adap->name; > int scl, sda, ret; > > if (adap->pre_xfer) { > @@ -622,7 +623,7 @@ static int __i2c_bit_add_bus(struct i2c_ > int ret; > > if (bit_test) { > - ret = test_bus(adap, adap->name); > + ret = test_bus(adap); > if (ret < 0) > return -ENODEV; > } > > > -- > Jean Delvare > ^ permalink raw reply [flat|nested] 3+ messages in thread
[parent not found: <BANLkTikBTN-3n0AUUxM2bgMKzME8zznycg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>]
* Re: [PATCH] i2c-algo-bit: Cleanup bus_test calling convention [not found] ` <BANLkTikBTN-3n0AUUxM2bgMKzME8zznycg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org> @ 2011-04-15 16:07 ` Jean Delvare 0 siblings, 0 replies; 3+ messages in thread From: Jean Delvare @ 2011-04-15 16:07 UTC (permalink / raw) To: Alex Deucher; +Cc: Linux I2C On Fri, 15 Apr 2011 11:57:46 -0400, Alex Deucher wrote: > On Fri, Apr 15, 2011 at 5:13 AM, Jean Delvare <khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org> wrote: > > Now that we pass the i2c_adapter as the first parameter, it makes > > little sense to pass its name separately as the second. > > > > Signed-off-by: Jean Delvare <khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org> > > Cc: Alex Deucher <alexdeucher-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > > --- > > Alex, I think it would make sense to merge this into your own patch? > > > > Yeah, looks good to me. Do you want to merge them or do you want me > to send new patch? I'll take care, no problem. -- Jean Delvare ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-04-15 16:07 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-15 9:13 [PATCH] i2c-algo-bit: Cleanup bus_test calling convention Jean Delvare
[not found] ` <20110415111323.51bef2ac-R0o5gVi9kd7kN2dkZ6Wm7A@public.gmane.org>
2011-04-15 15:57 ` Alex Deucher
[not found] ` <BANLkTikBTN-3n0AUUxM2bgMKzME8zznycg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2011-04-15 16:07 ` Jean Delvare
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).