linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* IMX: board hardware macro
@ 2013-03-26 22:31 Daniel Lezcano
  2013-03-27  6:33 ` Shawn Guo
  0 siblings, 1 reply; 5+ messages in thread
From: Daniel Lezcano @ 2013-03-26 22:31 UTC (permalink / raw)
  To: linux-arm-kernel

HI all,

is there a macro to tell if the board is iMX51 and iMX6Q ?

I would like to do the same as:

static int __init tegra_cpuidle_init(void)
{
int ret;

switch (tegra_chip_id) {
case TEGRA20:
ret = tegra20_cpuidle_init();
break;
case TEGRA30:
ret = tegra30_cpuidle_init();
break;
case TEGRA114:
ret = tegra114_cpuidle_init();
break;
default:
ret = -ENODEV;
break;
}

return ret;
}
device_initcall(tegra_cpuidle_init);

Thanks in advance

-- Daniel


-- 
 <http://www.linaro.org/> Linaro.org ? Open source software for ARM SoCs

Follow Linaro:  <http://www.facebook.com/pages/Linaro> Facebook |
<http://twitter.com/#!/linaroorg> Twitter |
<http://www.linaro.org/linaro-blog/> Blog

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-03-27 13:53 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-26 22:31 IMX: board hardware macro Daniel Lezcano
2013-03-27  6:33 ` Shawn Guo
2013-03-27  9:13   ` Daniel Lezcano
2013-03-27 12:34     ` Shawn Guo
2013-03-27 13:53       ` Daniel Lezcano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).