Message ID | 1405158213-14679-1-git-send-email-linus.walleij@linaro.org |
---|---|
State | Accepted |
Commit | 97d496bf1a7934c77f8bb0de9b773dd759def616 |
Headers | show |
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
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
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 --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";
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(-)