OMAP3: PM: Initialize IVA only if available
IVA device is not present in many OMAP3 variants. This patch ensures that initialization is tied to the presence of IVA on the device. Signed-off-by: Sanjeev Premi <premi@ti.com> Signed-off-by: Kevin Hilman <khilman@ti.com>
This commit is contained in:
parent
4071318983
commit
2de0baefaa
1 changed files with 3 additions and 1 deletions
|
@ -83,7 +83,9 @@ static int _init_omap_device(char *name, struct device **new_dev)
|
||||||
static void omap2_init_processor_devices(void)
|
static void omap2_init_processor_devices(void)
|
||||||
{
|
{
|
||||||
_init_omap_device("mpu", &mpu_dev);
|
_init_omap_device("mpu", &mpu_dev);
|
||||||
_init_omap_device("iva", &iva_dev);
|
if (omap3_has_iva())
|
||||||
|
_init_omap_device("iva", &iva_dev);
|
||||||
|
|
||||||
if (cpu_is_omap44xx()) {
|
if (cpu_is_omap44xx()) {
|
||||||
_init_omap_device("l3_main_1", &l3_dev);
|
_init_omap_device("l3_main_1", &l3_dev);
|
||||||
_init_omap_device("dsp", &dsp_dev);
|
_init_omap_device("dsp", &dsp_dev);
|
||||||
|
|
Loading…
Reference in a new issue