diff mbox

cpufreq: sa1110: set memory type for h3600

Message ID 1405158213-14679-1-git-send-email-linus.walleij@linaro.org
State Accepted
Commit 97d496bf1a7934c77f8bb0de9b773dd759def616
Headers show

Commit Message

Linus Walleij July 12, 2014, 9:43 a.m. UTC
The Compaq iPAQ h3600 also has the K4S281632b-1H memory type.
Verified by prying apart a broken board.

Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
 drivers/cpufreq/sa1110-cpufreq.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Viresh Kumar July 12, 2014, 2:45 p.m. UTC | #1
On 12 July 2014 15:13, Linus Walleij <linus.walleij@linaro.org> wrote:
> The Compaq iPAQ h3600 also has the K4S281632b-1H memory type.
> Verified by prying apart a broken board.
>
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> ---
>  drivers/cpufreq/sa1110-cpufreq.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/cpufreq/sa1110-cpufreq.c b/drivers/cpufreq/sa1110-cpufreq.c
> index 546376719d8f..b5befc211172 100644
> --- a/drivers/cpufreq/sa1110-cpufreq.c
> +++ b/drivers/cpufreq/sa1110-cpufreq.c
> @@ -349,7 +349,7 @@ static int __init sa1110_clk_init(void)
>                         name = "K4S641632D";
>                 if (machine_is_h3100())
>                         name = "KM416S4030CT";
> -               if (machine_is_jornada720())
> +               if (machine_is_jornada720() || machine_is_h3600())
>                         name = "K4S281632B-1H";
>                 if (machine_is_nanoengine())
>                         name = "MT48LC8M16A2TG-75";

Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
--
To unsubscribe from this list: send the line "unsubscribe linux-pm" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Viresh Kumar July 12, 2014, 2:46 p.m. UTC | #2
Fixing Rafael's id

On 12 July 2014 20:15, Viresh Kumar <viresh.kumar@linaro.org> wrote:
> On 12 July 2014 15:13, Linus Walleij <linus.walleij@linaro.org> wrote:
>> The Compaq iPAQ h3600 also has the K4S281632b-1H memory type.
>> Verified by prying apart a broken board.
>>
>> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
>> ---
>>  drivers/cpufreq/sa1110-cpufreq.c | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/cpufreq/sa1110-cpufreq.c b/drivers/cpufreq/sa1110-cpufreq.c
>> index 546376719d8f..b5befc211172 100644
>> --- a/drivers/cpufreq/sa1110-cpufreq.c
>> +++ b/drivers/cpufreq/sa1110-cpufreq.c
>> @@ -349,7 +349,7 @@ static int __init sa1110_clk_init(void)
>>                         name = "K4S641632D";
>>                 if (machine_is_h3100())
>>                         name = "KM416S4030CT";
>> -               if (machine_is_jornada720())
>> +               if (machine_is_jornada720() || machine_is_h3600())
>>                         name = "K4S281632B-1H";
>>                 if (machine_is_nanoengine())
>>                         name = "MT48LC8M16A2TG-75";
>
> Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
--
To unsubscribe from this list: send the line "unsubscribe linux-pm" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Rafael J. Wysocki July 18, 2014, 1:06 a.m. UTC | #3
On Saturday, July 12, 2014 08:15:21 PM Viresh Kumar wrote:
> On 12 July 2014 15:13, Linus Walleij <linus.walleij@linaro.org> wrote:
> > The Compaq iPAQ h3600 also has the K4S281632b-1H memory type.
> > Verified by prying apart a broken board.
> >
> > Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> > ---
> >  drivers/cpufreq/sa1110-cpufreq.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/cpufreq/sa1110-cpufreq.c b/drivers/cpufreq/sa1110-cpufreq.c
> > index 546376719d8f..b5befc211172 100644
> > --- a/drivers/cpufreq/sa1110-cpufreq.c
> > +++ b/drivers/cpufreq/sa1110-cpufreq.c
> > @@ -349,7 +349,7 @@ static int __init sa1110_clk_init(void)
> >                         name = "K4S641632D";
> >                 if (machine_is_h3100())
> >                         name = "KM416S4030CT";
> > -               if (machine_is_jornada720())
> > +               if (machine_is_jornada720() || machine_is_h3600())
> >                         name = "K4S281632B-1H";
> >                 if (machine_is_nanoengine())
> >                         name = "MT48LC8M16A2TG-75";
> 
> Acked-by: Viresh Kumar <viresh.kumar@linaro.org>

Applied, thanks!

--
To unsubscribe from this list: send the line "unsubscribe linux-pm" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/drivers/cpufreq/sa1110-cpufreq.c b/drivers/cpufreq/sa1110-cpufreq.c
index 546376719d8f..b5befc211172 100644
--- a/drivers/cpufreq/sa1110-cpufreq.c
+++ b/drivers/cpufreq/sa1110-cpufreq.c
@@ -349,7 +349,7 @@  static int __init sa1110_clk_init(void)
 			name = "K4S641632D";
 		if (machine_is_h3100())
 			name = "KM416S4030CT";
-		if (machine_is_jornada720())
+		if (machine_is_jornada720() || machine_is_h3600())
 			name = "K4S281632B-1H";
 		if (machine_is_nanoengine())
 			name = "MT48LC8M16A2TG-75";