All of lore.kernel.org
 help / color / mirror / Atom feed
From: moinejf@free.fr (Jean-Francois Moine)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 26/28] drm/i2c: tda998x: code optimization
Date: Sun, 12 Jan 2014 09:22:01 +0100	[thread overview]
Message-ID: <20140112092201.764fb09c@armhf> (raw)
In-Reply-To: <20140111185509.GL15937@n2100.arm.linux.org.uk>

On Sat, 11 Jan 2014 18:55:09 +0000
Russell King - ARM Linux <linux@arm.linux.org.uk> wrote:

> On Thu, Jan 09, 2014 at 12:07:25PM +0100, Jean-Francois Moine wrote:
> > This patch reduces the number of I2C exchanges by setting many bits in
> > one write and removing a useless write.
> > 
> > Signed-off-by: Jean-Francois Moine <moinejf@free.fr>
> > ---
> >  drivers/gpu/drm/i2c/tda998x_drv.c   | 10 ++++------
> >  1 file changed, 4 insertions(+), 6 deletions(-)
> > 
> > diff --git a/drivers/gpu/drm/i2c/tda998x_drv.c b/drivers/gpu/drm/i2c/tda998x_drv.c
> > index 6b4f6d2..d3b3f3a 100644
> > --- a/drivers/gpu/drm/i2c/tda998x_drv.c
> > +++ b/drivers/gpu/drm/i2c/tda998x_drv.c
> > @@ -751,10 +751,10 @@ tda998x_configure_audio(struct tda998x_priv *priv,
> >  	}
> >  
> >  	reg_write(priv, REG_AIP_CLKSEL, clksel_aip);
> > -	reg_clear(priv, REG_AIP_CNTRL_0, AIP_CNTRL_0_LAYOUT);
> > +	reg_clear(priv, REG_AIP_CNTRL_0, AIP_CNTRL_0_LAYOUT |
> 
> This patch clearly hasn't even been build tested, so I doubt there's
> much point reviewing this or the following patches.  From a quick scan
> of the following patches, this never got fixed so the following patches
> can't have been build tested either.

I don't see what can be the problem with this patch. It does not change
anything in the logic. About testing, it is applied to my Cubox kernel
for more than 4 months and everything works correctly.

I will move the following comment a bit upwards. Maybe the code will be
clearer.

-- 
Ken ar c'henta?	|	      ** Breizh ha Linux atav! **
Jef		|		http://moinejf.free.fr/

WARNING: multiple messages have this Message-ID (diff)
From: Jean-Francois Moine <moinejf@free.fr>
To: Russell King - ARM Linux <linux@arm.linux.org.uk>
Cc: linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org
Subject: Re: [PATCH v2 26/28] drm/i2c: tda998x: code optimization
Date: Sun, 12 Jan 2014 09:22:01 +0100	[thread overview]
Message-ID: <20140112092201.764fb09c@armhf> (raw)
In-Reply-To: <20140111185509.GL15937@n2100.arm.linux.org.uk>

On Sat, 11 Jan 2014 18:55:09 +0000
Russell King - ARM Linux <linux@arm.linux.org.uk> wrote:

> On Thu, Jan 09, 2014 at 12:07:25PM +0100, Jean-Francois Moine wrote:
> > This patch reduces the number of I2C exchanges by setting many bits in
> > one write and removing a useless write.
> > 
> > Signed-off-by: Jean-Francois Moine <moinejf@free.fr>
> > ---
> >  drivers/gpu/drm/i2c/tda998x_drv.c   | 10 ++++------
> >  1 file changed, 4 insertions(+), 6 deletions(-)
> > 
> > diff --git a/drivers/gpu/drm/i2c/tda998x_drv.c b/drivers/gpu/drm/i2c/tda998x_drv.c
> > index 6b4f6d2..d3b3f3a 100644
> > --- a/drivers/gpu/drm/i2c/tda998x_drv.c
> > +++ b/drivers/gpu/drm/i2c/tda998x_drv.c
> > @@ -751,10 +751,10 @@ tda998x_configure_audio(struct tda998x_priv *priv,
> >  	}
> >  
> >  	reg_write(priv, REG_AIP_CLKSEL, clksel_aip);
> > -	reg_clear(priv, REG_AIP_CNTRL_0, AIP_CNTRL_0_LAYOUT);
> > +	reg_clear(priv, REG_AIP_CNTRL_0, AIP_CNTRL_0_LAYOUT |
> 
> This patch clearly hasn't even been build tested, so I doubt there's
> much point reviewing this or the following patches.  From a quick scan
> of the following patches, this never got fixed so the following patches
> can't have been build tested either.

I don't see what can be the problem with this patch. It does not change
anything in the logic. About testing, it is applied to my Cubox kernel
for more than 4 months and everything works correctly.

I will move the following comment a bit upwards. Maybe the code will be
clearer.

-- 
Ken ar c'hentañ	|	      ** Breizh ha Linux atav! **
Jef		|		http://moinejf.free.fr/
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

WARNING: multiple messages have this Message-ID (diff)
From: Jean-Francois Moine <moinejf@free.fr>
To: Russell King - ARM Linux <linux@arm.linux.org.uk>
Cc: dri-devel@lists.freedesktop.org, Rob Clark <robdclark@gmail.com>,
	Dave Airlie <airlied@gmail.com>,
	linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v2 26/28] drm/i2c: tda998x: code optimization
Date: Sun, 12 Jan 2014 09:22:01 +0100	[thread overview]
Message-ID: <20140112092201.764fb09c@armhf> (raw)
In-Reply-To: <20140111185509.GL15937@n2100.arm.linux.org.uk>

On Sat, 11 Jan 2014 18:55:09 +0000
Russell King - ARM Linux <linux@arm.linux.org.uk> wrote:

> On Thu, Jan 09, 2014 at 12:07:25PM +0100, Jean-Francois Moine wrote:
> > This patch reduces the number of I2C exchanges by setting many bits in
> > one write and removing a useless write.
> > 
> > Signed-off-by: Jean-Francois Moine <moinejf@free.fr>
> > ---
> >  drivers/gpu/drm/i2c/tda998x_drv.c   | 10 ++++------
> >  1 file changed, 4 insertions(+), 6 deletions(-)
> > 
> > diff --git a/drivers/gpu/drm/i2c/tda998x_drv.c b/drivers/gpu/drm/i2c/tda998x_drv.c
> > index 6b4f6d2..d3b3f3a 100644
> > --- a/drivers/gpu/drm/i2c/tda998x_drv.c
> > +++ b/drivers/gpu/drm/i2c/tda998x_drv.c
> > @@ -751,10 +751,10 @@ tda998x_configure_audio(struct tda998x_priv *priv,
> >  	}
> >  
> >  	reg_write(priv, REG_AIP_CLKSEL, clksel_aip);
> > -	reg_clear(priv, REG_AIP_CNTRL_0, AIP_CNTRL_0_LAYOUT);
> > +	reg_clear(priv, REG_AIP_CNTRL_0, AIP_CNTRL_0_LAYOUT |
> 
> This patch clearly hasn't even been build tested, so I doubt there's
> much point reviewing this or the following patches.  From a quick scan
> of the following patches, this never got fixed so the following patches
> can't have been build tested either.

I don't see what can be the problem with this patch. It does not change
anything in the logic. About testing, it is applied to my Cubox kernel
for more than 4 months and everything works correctly.

I will move the following comment a bit upwards. Maybe the code will be
clearer.

-- 
Ken ar c'hentañ	|	      ** Breizh ha Linux atav! **
Jef		|		http://moinejf.free.fr/

  reply	other threads:[~2014-01-12  8:22 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-01-09 11:07 [PATCH v2 26/28] drm/i2c: tda998x: code optimization Jean-Francois Moine
2014-01-09 11:07 ` Jean-Francois Moine
2014-01-09 11:07 ` Jean-Francois Moine
2014-01-11 18:55 ` Russell King - ARM Linux
2014-01-11 18:55   ` Russell King - ARM Linux
2014-01-12  8:22   ` Jean-Francois Moine [this message]
2014-01-12  8:22     ` Jean-Francois Moine
2014-01-12  8:22     ` Jean-Francois Moine
2014-01-12  9:45     ` Russell King - ARM Linux
2014-01-12  9:45       ` Russell King - ARM Linux
2014-01-12 10:14       ` Jean-Francois Moine
2014-01-12 10:14         ` Jean-Francois Moine
2014-01-12 10:14         ` Jean-Francois Moine
2014-01-12 10:37         ` Russell King - ARM Linux
2014-01-12 10:37           ` Russell King - ARM Linux

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20140112092201.764fb09c@armhf \
    --to=moinejf@free.fr \
    --cc=linux-arm-kernel@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.