Re: [PATCH v2] OMAP3: powerdomains: Match silicon revision toselect the correct "core_pwrdm" definition

From: Tony Lindgren
Date: Wed Sep 14 2011 - 20:27:38 EST


* Koyamangalath, Abhilash <abhilash.kv@xxxxxx> [110812 00:12]:
> Hi
>
> > @@ -58,6 +59,24 @@ static struct powerdomain *_pwrdm_lookup(const char *name)
> >
> > list_for_each_entry(temp_pwrdm, &pwrdm_list, node) {
> > if (!strcmp(name, temp_pwrdm->name)) {
> > + if (!strcmp(name, "core_pwrdm") && cpu_is_omap3630()) {
> > + if (omap_rev() > OMAP3630_REV_ES1_0) {
> > + /*
> > + * match omap_chip info for OMAP3630
> > + * Rev ES1.1, ES1.2 or higher
> > + */
> > + if (!(temp_pwrdm->omap_chip.oc
> > + & CHIP_GE_OMAP3630ES1_1))
> > + continue;
> > + } else {
> > + /* match omap_chip info for OMAP3630
> > + * Rev ES1.0
> > + */
> > + if (!(temp_pwrdm->omap_chip.oc
> > + & CHIP_IS_OMAP3630ES1))
> > + continue;
> > + }
> > + }
> > pwrdm = temp_pwrdm;
> > break;
> > }
>
> Any comments ?

Can you please check if this is still needed after Paul's
CHIP_IS removal patches? You can find them at:

git://git.pwsan.com/linux-2.6 omap_chip_remove_cleanup_3.2

Regards,

Tony
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/