From patchwork Thu Mar 10 06:22:28 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Gulati, Shweta" X-Patchwork-Id: 623521 X-Patchwork-Delegate: khilman@deeprootsystems.com Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id p2A6Meh4002946 for ; Thu, 10 Mar 2011 06:22:40 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751159Ab1CJGWj (ORCPT ); Thu, 10 Mar 2011 01:22:39 -0500 Received: from comal.ext.ti.com ([198.47.26.152]:46930 "EHLO comal.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750893Ab1CJGWi (ORCPT ); Thu, 10 Mar 2011 01:22:38 -0500 Received: from dbdp31.itg.ti.com ([172.24.170.98]) by comal.ext.ti.com (8.13.7/8.13.7) with ESMTP id p2A6MWcn031114 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 10 Mar 2011 00:22:35 -0600 Received: from localhost.localdomain (localhost [127.0.0.1]) by dbdp31.itg.ti.com (8.13.8/8.13.8) with ESMTP id p2A6MVsA006314; Thu, 10 Mar 2011 11:52:31 +0530 (IST) From: Shweta Gulati To: linux-omap@vger.kernel.org Cc: linux-arm-kernel@lists.infradead.org, Shweta Gulati Subject: [PATCH] OMAP4: Intialize IVA Device in addition to DSP device. Date: Thu, 10 Mar 2011 11:52:28 +0530 Message-Id: <1299738148-28557-1-git-send-email-shweta.gulati@ti.com> X-Mailer: git-send-email 1.7.0.4 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Thu, 10 Mar 2011 06:22:40 +0000 (UTC) diff --git a/arch/arm/mach-omap2/pm.c b/arch/arm/mach-omap2/pm.c index 30af335..49486f5 100644 --- a/arch/arm/mach-omap2/pm.c +++ b/arch/arm/mach-omap2/pm.c @@ -89,6 +89,7 @@ static void omap2_init_processor_devices(void) if (cpu_is_omap44xx()) { _init_omap_device("l3_main_1", &l3_dev); _init_omap_device("dsp", &dsp_dev); + _init_omap_device("iva", &iva_dev); } else { _init_omap_device("l3_main", &l3_dev); }