From mboxrd@z Thu Jan 1 00:00:00 1970 From: Gaku Inami Date: Fri, 04 Jul 2014 05:40:28 +0000 Subject: Re: [PATCH v2] ARM: shmobile: Lager: Correct I2C bus for VDD MPU regulator Message-Id: <53B63E4C.9040802@bp.renesas.com> List-Id: References: <53B5F327.5040301@renesas.com> In-Reply-To: <53B5F327.5040301@renesas.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-sh@vger.kernel.org (2014/07/04 9:19), Khiem Nguyen wrote: > I2C bus for VDD MPU regulator is IIC3, not I2C3. > > Signed-off-by: Khiem Nguyen > --- > v2: > - re-based on top of tag renesas-devel-v3.16-rc3-20140701. > - removed redundant spaces. > > arch/arm/boot/dts/r8a7790-lager.dts | 10 +++++----- > 1 file changed, 5 insertions(+), 5 deletions(-) > > diff --git a/arch/arm/boot/dts/r8a7790-lager.dts b/arch/arm/boot/dts/r8a7790-lager.dts > index 544202b..ffe0523 100644 > --- a/arch/arm/boot/dts/r8a7790-lager.dts > +++ b/arch/arm/boot/dts/r8a7790-lager.dts > @@ -215,9 +215,9 @@ > renesas,function = "i2c2"; > }; > > - i2c3_pins: i2c3 { > - renesas,groups = "i2c3"; > - renesas,function = "i2c3"; > + iic3_pins: iic3 { > + renesas,groups = "iic3"; > + renesas,function = "iic3"; > }; > > usb0_pins: usb0 { > @@ -368,9 +368,9 @@ > pinctrl-names = "default"; > }; > > -&i2c3 { > +&iic3 { > pinctrl-names = "default"; > - pinctrl-0 = <&i2c3_pins>; > + pinctrl-0 = <&iic3_pins>; > status = "okay"; > > vdd_dvfs: regulator@68 { Thank you for updating patch. I tested your patch. Test reult is good. [Test result] (in both SMP and non-SMP) - kernel boot : OK - regurator initialize : OK - cpufreq initialize : OK - frequency scaling : OK - changes governor : OK Tested-by: Gaku Inami This is a bug fix of my cpufreq patch. Thank you for your fix.