public inbox for linux-i2c@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] i2c: Prevent log spam on some DVB adapters
@ 2008-08-21 13:15 Jean Delvare
       [not found] ` <20080821151556.53319c57-ig7AzVSIIG7kN2dkZ6Wm7A@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Jean Delvare @ 2008-08-21 13:15 UTC (permalink / raw)
  To: Linux I2C; +Cc: Uwe Bugla

Some DVB adapters do not support the special I2C transaction that we
use for probing purposes. There's no point in logging this event, as
there's nothing the user can do and in general there is no actual
problem. So, degrade one of these message to a debug message, and
move the other one around so that it is only printed on bogus drivers.

Signed-off-by: Jean Delvare <khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org>
Cc: Uwe Bugla <uwe.bugla-Mmb7MZpHnFY@public.gmane.org>
---
 drivers/i2c/i2c-core.c |   12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

--- linux-2.6.27-rc4.orig/drivers/i2c/i2c-core.c	2008-08-21 14:04:03.000000000 +0200
+++ linux-2.6.27-rc4/drivers/i2c/i2c-core.c	2008-08-21 14:58:14.000000000 +0200
@@ -1190,8 +1190,8 @@ int i2c_probe(struct i2c_adapter *adapte
 		 && address_data->normal_i2c[0] == I2C_CLIENT_END)
 			return 0;
 
-		dev_warn(&adapter->dev, "SMBus Quick command not supported, "
-			 "can't probe for chips\n");
+		dev_dbg(&adapter->dev, "SMBus Quick command not supported, "
+			"can't probe for chips\n");
 		return -EOPNOTSUPP;
 	}
 
@@ -1352,6 +1352,10 @@ static int i2c_detect(struct i2c_adapter
 		}
 	}
 
+	/* Stop here if the classes do not match */
+	if (!(adapter->class & driver->class))
+		goto exit_free;
+
 	/* Stop here if we can't use SMBUS_QUICK */
 	if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_QUICK)) {
 		if (address_data->probe[0] == I2C_CLIENT_END
@@ -1364,10 +1368,6 @@ static int i2c_detect(struct i2c_adapter
 		goto exit_free;
 	}
 
-	/* Stop here if the classes do not match */
-	if (!(adapter->class & driver->class))
-		goto exit_free;
-
 	/* Probe entries are done second, and are not affected by ignore
 	   entries either */
 	for (i = 0; address_data->probe[i] != I2C_CLIENT_END; i += 2) {


-- 
Jean Delvare

_______________________________________________
i2c mailing list
i2c-GZX6beZjE8VD60Wz+7aTrA@public.gmane.org
http://lists.lm-sensors.org/mailman/listinfo/i2c

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] i2c: Prevent log spam on some DVB adapters
       [not found] ` <20080821151556.53319c57-ig7AzVSIIG7kN2dkZ6Wm7A@public.gmane.org>
@ 2008-08-21 14:44   ` Uwe Bugla
       [not found]     ` <200808211644.55576.uwe.bugla-Mmb7MZpHnFY@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Uwe Bugla @ 2008-08-21 14:44 UTC (permalink / raw)
  To: Jean Delvare, Florian Schirmer,
	akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b,
	patrick.boettcher-T5F83Mi6MZE, stoth-tHsjnVUC+Ghl57MIdRCFDg,
	mchehab-wEGCiKHe2LqWVfeAwA7xHQ, Linux I2C <i2c@

Am Thursday 21 August 2008 15:15:56 schrieben Sie:
> Some DVB adapters do not support the special I2C transaction that we
> use for probing purposes. There's no point in logging this event, as
> there's nothing the user can do and in general there is no actual
> problem. So, degrade one of these message to a debug message, and
> move the other one around so that it is only printed on bogus drivers.
>
> Signed-off-by: Jean Delvare <khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org>
> Cc: Uwe Bugla <uwe.bugla-Mmb7MZpHnFY@public.gmane.org>
> ---
>  drivers/i2c/i2c-core.c |   12 ++++++------
>  1 file changed, 6 insertions(+), 6 deletions(-)
>
> --- linux-2.6.27-rc4.orig/drivers/i2c/i2c-core.c	2008-08-21
> 14:04:03.000000000 +0200 +++
> linux-2.6.27-rc4/drivers/i2c/i2c-core.c	2008-08-21 14:58:14.000000000 +0200
> @@ -1190,8 +1190,8 @@ int i2c_probe(struct i2c_adapter *adapte
>  		 && address_data->normal_i2c[0] == I2C_CLIENT_END)
>  			return 0;
>
> -		dev_warn(&adapter->dev, "SMBus Quick command not supported, "
> -			 "can't probe for chips\n");
> +		dev_dbg(&adapter->dev, "SMBus Quick command not supported, "
> +			"can't probe for chips\n");
>  		return -EOPNOTSUPP;
>  	}
>
> @@ -1352,6 +1352,10 @@ static int i2c_detect(struct i2c_adapter
>  		}
>  	}
>
> +	/* Stop here if the classes do not match */
> +	if (!(adapter->class & driver->class))
> +		goto exit_free;
> +
>  	/* Stop here if we can't use SMBUS_QUICK */
>  	if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_QUICK)) {
>  		if (address_data->probe[0] == I2C_CLIENT_END
> @@ -1364,10 +1368,6 @@ static int i2c_detect(struct i2c_adapter
>  		goto exit_free;
>  	}
>
> -	/* Stop here if the classes do not match */
> -	if (!(adapter->class & driver->class))
> -		goto exit_free;
> -
>  	/* Probe entries are done second, and are not affected by ignore
>  	   entries either */
>  	for (i = 0; address_data->probe[i] != I2C_CLIENT_END; i += 2) {

Salut Jean,

in case that you change the following:

@@ -1188,8 +1188,8 @@ int i2c_probe(struct i2c_adapter *adapte

instead of:

@@ -1190,8 +1190,8 @@ int i2c_probe(struct i2c_adapter *adapte,

@@ -1350,6 +1350,10 @@ static int i2c_detect(struct i2c_adapter

instead of:

@@ -1352,6 +1352,10 @@ static int i2c_detect(struct i2c_adapter,

@@ -1362,10 +1366,6 @@ static int i2c_detect(struct i2c_adapte

instead of:

@@ -1364,10 +1368,6 @@ static int i2c_detect(struct i2c_adapte

I'll give you my: Signed-Off-By: Uwe Bugla <uwe.bugla-Mmb7MZpHnFY@public.gmane.org>

for your patch material......

Mille fois merci encore une fois!  : )

I've understood the issue in so far that this patch stuff only suppresses the 
symptom, but does not cure the source problem, and I'd be very happy to see a 
card driver fully supporting the I2C bus.

And if I'm not completely aside my DVB-S card runs somwhow now, but it runs 
with an applied brake.

Fact is that the nerving messages are gone  : )

C'est une plaisanterie travailler avec toi, Jean!  : )

On se verra

Uwe


_______________________________________________
i2c mailing list
i2c-GZX6beZjE8VD60Wz+7aTrA@public.gmane.org
http://lists.lm-sensors.org/mailman/listinfo/i2c

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] i2c: Prevent log spam on some DVB adapters
       [not found]     ` <200808211644.55576.uwe.bugla-Mmb7MZpHnFY@public.gmane.org>
@ 2008-08-21 14:59       ` Jean Delvare
       [not found]         ` <20080821165925.26877b4f-ig7AzVSIIG7kN2dkZ6Wm7A@public.gmane.org>
  0 siblings, 1 reply; 4+ messages in thread
From: Jean Delvare @ 2008-08-21 14:59 UTC (permalink / raw)
  To: Uwe Bugla
  Cc: stoth-tHsjnVUC+Ghl57MIdRCFDg, Linux I2C, Florian Schirmer,
	patrick.boettcher-T5F83Mi6MZE

On Thu, 21 Aug 2008 16:44:55 +0200, Uwe Bugla wrote:
> Am Thursday 21 August 2008 15:15:56 schrieben Sie:
> > Some DVB adapters do not support the special I2C transaction that we
> > use for probing purposes. There's no point in logging this event, as
> > there's nothing the user can do and in general there is no actual
> > problem. So, degrade one of these message to a debug message, and
> > move the other one around so that it is only printed on bogus drivers.
> >
> > Signed-off-by: Jean Delvare <khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org>
> > Cc: Uwe Bugla <uwe.bugla-Mmb7MZpHnFY@public.gmane.org>
> > ---
> >  drivers/i2c/i2c-core.c |   12 ++++++------
> >  1 file changed, 6 insertions(+), 6 deletions(-)
> >
> > --- linux-2.6.27-rc4.orig/drivers/i2c/i2c-core.c	2008-08-21
> > 14:04:03.000000000 +0200 +++
> > linux-2.6.27-rc4/drivers/i2c/i2c-core.c	2008-08-21 14:58:14.000000000 +0200
> > @@ -1190,8 +1190,8 @@ int i2c_probe(struct i2c_adapter *adapte
> >  		 && address_data->normal_i2c[0] == I2C_CLIENT_END)
> >  			return 0;
> >
> > -		dev_warn(&adapter->dev, "SMBus Quick command not supported, "
> > -			 "can't probe for chips\n");
> > +		dev_dbg(&adapter->dev, "SMBus Quick command not supported, "
> > +			"can't probe for chips\n");
> >  		return -EOPNOTSUPP;
> >  	}
> >
> > @@ -1352,6 +1352,10 @@ static int i2c_detect(struct i2c_adapter
> >  		}
> >  	}
> >
> > +	/* Stop here if the classes do not match */
> > +	if (!(adapter->class & driver->class))
> > +		goto exit_free;
> > +
> >  	/* Stop here if we can't use SMBUS_QUICK */
> >  	if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_QUICK)) {
> >  		if (address_data->probe[0] == I2C_CLIENT_END
> > @@ -1364,10 +1368,6 @@ static int i2c_detect(struct i2c_adapter
> >  		goto exit_free;
> >  	}
> >
> > -	/* Stop here if the classes do not match */
> > -	if (!(adapter->class & driver->class))
> > -		goto exit_free;
> > -
> >  	/* Probe entries are done second, and are not affected by ignore
> >  	   entries either */
> >  	for (i = 0; address_data->probe[i] != I2C_CLIENT_END; i += 2) {
> 
> Salut Jean,
> 
> in case that you change the following:
> 
> @@ -1188,8 +1188,8 @@ int i2c_probe(struct i2c_adapter *adapte
> 
> instead of:
> 
> @@ -1190,8 +1190,8 @@ int i2c_probe(struct i2c_adapter *adapte,
> 
> @@ -1350,6 +1350,10 @@ static int i2c_detect(struct i2c_adapter
> 
> instead of:
> 
> @@ -1352,6 +1352,10 @@ static int i2c_detect(struct i2c_adapter,
> 
> @@ -1362,10 +1366,6 @@ static int i2c_detect(struct i2c_adapte
> 
> instead of:
> 
> @@ -1364,10 +1368,6 @@ static int i2c_detect(struct i2c_adapte
> 
> I'll give you my: Signed-Off-By: Uwe Bugla <uwe.bugla-Mmb7MZpHnFY@public.gmane.org>
> 
> for your patch material......

Err, I'm not sure I quite follow you. You're worried about the 2 line
offset? That's nothing to worry about. It happens all the time, and is
not a problem at all. Patches with offsets still apply OK. I probably
have an additional patch to the same file in my tree, and that's about
it.

> Mille fois merci encore une fois!  : )
> 
> I've understood the issue in so far that this patch stuff only suppresses the 
> symptom, but does not cure the source problem, and I'd be very happy to see a 
> card driver fully supporting the I2C bus.
> 
> And if I'm not completely aside my DVB-S card runs somwhow now, but it runs 
> with an applied brake.

The metaphor is probably slightly exaggerated, initialization might be
a little slower than it should, but after that the remaining bug should
have no effect.

> Fact is that the nerving messages are gone  : )
> 
> C'est une plaisanterie travailler avec toi, Jean!  : )

False friends... The above translates to "it's a joke to work with you"
when you meant - I guess and hope - "it's pleasant to work with you" ;)

But thanks anyway :)

-- 
Jean Delvare

_______________________________________________
i2c mailing list
i2c-GZX6beZjE8VD60Wz+7aTrA@public.gmane.org
http://lists.lm-sensors.org/mailman/listinfo/i2c

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] i2c: Prevent log spam on some DVB adapters
       [not found]         ` <20080821165925.26877b4f-ig7AzVSIIG7kN2dkZ6Wm7A@public.gmane.org>
@ 2008-08-21 15:42           ` Uwe Bugla
  0 siblings, 0 replies; 4+ messages in thread
From: Uwe Bugla @ 2008-08-21 15:42 UTC (permalink / raw)
  To: Jean Delvare, akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b,
	patrick.boettcher-T5F83Mi6MZE, mchehab-wEGCiKHe2LqWVfeAwA7xHQ,
	stoth-tHsjnVUC+Ghl57MIdRCFDg, jolt-8fvKG/JI9D0dnm+yROfE0A,
	i2c-GZX6beZjE8VD60Wz+7aTrA

Am Thursday 21 August 2008 16:59:25 schrieben Sie:
> On Thu, 21 Aug 2008 16:44:55 +0200, Uwe Bugla wrote:
> > Am Thursday 21 August 2008 15:15:56 schrieben Sie:
> > > Some DVB adapters do not support the special I2C transaction that we
> > > use for probing purposes. There's no point in logging this event, as
> > > there's nothing the user can do and in general there is no actual
> > > problem. So, degrade one of these message to a debug message, and
> > > move the other one around so that it is only printed on bogus drivers.
> > >
> > > Signed-off-by: Jean Delvare <khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org>
> > > Cc: Uwe Bugla <uwe.bugla-Mmb7MZpHnFY@public.gmane.org>
> > > ---
> > >  drivers/i2c/i2c-core.c |   12 ++++++------
> > >  1 file changed, 6 insertions(+), 6 deletions(-)
> > >
> > > --- linux-2.6.27-rc4.orig/drivers/i2c/i2c-core.c	2008-08-21
> > > 14:04:03.000000000 +0200 +++
> > > linux-2.6.27-rc4/drivers/i2c/i2c-core.c	2008-08-21 14:58:14.000000000
> > > +0200 @@ -1190,8 +1190,8 @@ int i2c_probe(struct i2c_adapter *adapte &&
> > > address_data->normal_i2c[0] == I2C_CLIENT_END)
> > >  			return 0;
> > >
> > > -		dev_warn(&adapter->dev, "SMBus Quick command not supported, "
> > > -			 "can't probe for chips\n");
> > > +		dev_dbg(&adapter->dev, "SMBus Quick command not supported, "
> > > +			"can't probe for chips\n");
> > >  		return -EOPNOTSUPP;
> > >  	}
> > >
> > > @@ -1352,6 +1352,10 @@ static int i2c_detect(struct i2c_adapter
> > >  		}
> > >  	}
> > >
> > > +	/* Stop here if the classes do not match */
> > > +	if (!(adapter->class & driver->class))
> > > +		goto exit_free;
> > > +
> > >  	/* Stop here if we can't use SMBUS_QUICK */
> > >  	if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_QUICK)) {
> > >  		if (address_data->probe[0] == I2C_CLIENT_END
> > > @@ -1364,10 +1368,6 @@ static int i2c_detect(struct i2c_adapter
> > >  		goto exit_free;
> > >  	}
> > >
> > > -	/* Stop here if the classes do not match */
> > > -	if (!(adapter->class & driver->class))
> > > -		goto exit_free;
> > > -
> > >  	/* Probe entries are done second, and are not affected by ignore
> > >  	   entries either */
> > >  	for (i = 0; address_data->probe[i] != I2C_CLIENT_END; i += 2) {
> >
> > Salut Jean,
> >
> > in case that you change the following:
> >
> > @@ -1188,8 +1188,8 @@ int i2c_probe(struct i2c_adapter *adapte
> >
> > instead of:
> >
> > @@ -1190,8 +1190,8 @@ int i2c_probe(struct i2c_adapter *adapte,
> >
> > @@ -1350,6 +1350,10 @@ static int i2c_detect(struct i2c_adapter
> >
> > instead of:
> >
> > @@ -1352,6 +1352,10 @@ static int i2c_detect(struct i2c_adapter,
> >
> > @@ -1362,10 +1366,6 @@ static int i2c_detect(struct i2c_adapte
> >
> > instead of:
> >
> > @@ -1364,10 +1368,6 @@ static int i2c_detect(struct i2c_adapte
> >
> > I'll give you my: Signed-Off-By: Uwe Bugla <uwe.bugla-Mmb7MZpHnFY@public.gmane.org>
> >
> > for your patch material......
>
> Err, I'm not sure I quite follow you. You're worried about the 2 line
> offset? That's nothing to worry about. It happens all the time, and is
> not a problem at all. Patches with offsets still apply OK. I probably
> have an additional patch to the same file in my tree, and that's about
> it.
>
> > Mille fois merci encore une fois!  : )
> >
> > I've understood the issue in so far that this patch stuff only suppresses
> > the symptom, but does not cure the source problem, and I'd be very happy
> > to see a card driver fully supporting the I2C bus.
> >
> > And if I'm not completely aside my DVB-S card runs somwhow now, but it
> > runs with an applied brake.
>
> The metaphor is probably slightly exaggerated, initialization might be
> a little slower than it should, but after that the remaining bug should
> have no effect.
>
> > Fact is that the nerving messages are gone  : )
> >
> > C'est une plaisanterie travailler avec toi, Jean!  : )
>
> False friends... The above translates to "it's a joke to work with you"
> when you meant - I guess and hope - "it's pleasant to work with you" ;)
>
> But thanks anyway :)

Jean,

I'm so much longing to go to France for some weeks to improve my language 
practice. It's rotten, and I know that........
I prefer the department of Herault and Carcassonne. It's half Spanish and half 
French there, and it's very agreeable down there. I hate Paris and all the 
North of France.... That's in the same way petit-bourgeois as whole Germany is 
- just horrible!
There are severe sanitary problems of a very severe kind retaining me from 
doing what I want.
I certainly meant the second choice - how could I be cynical enough to mean 
the first one? Impossible!!!

It's me to say "Thank you", not you.
And I'd really be happy if the majority of the linuxtv "maintainers" (whatever 
that might mean in that specific context) would be as friendly and reliable as 
you are.  : )
But that's only a dream, and that's condemned to be a dream - just a dream!

On se verra

Uwe


_______________________________________________
i2c mailing list
i2c-GZX6beZjE8VD60Wz+7aTrA@public.gmane.org
http://lists.lm-sensors.org/mailman/listinfo/i2c

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2008-08-21 15:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-08-21 13:15 [PATCH] i2c: Prevent log spam on some DVB adapters Jean Delvare
     [not found] ` <20080821151556.53319c57-ig7AzVSIIG7kN2dkZ6Wm7A@public.gmane.org>
2008-08-21 14:44   ` Uwe Bugla
     [not found]     ` <200808211644.55576.uwe.bugla-Mmb7MZpHnFY@public.gmane.org>
2008-08-21 14:59       ` Jean Delvare
     [not found]         ` <20080821165925.26877b4f-ig7AzVSIIG7kN2dkZ6Wm7A@public.gmane.org>
2008-08-21 15:42           ` Uwe Bugla

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox