From patchwork Thu Aug 12 00:29:51 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Que, Simon" X-Patchwork-Id: 119110 X-Patchwork-Delegate: tony@atomide.com Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.4/8.14.3) with ESMTP id o7C0UJur003724 for ; Thu, 12 Aug 2010 00:30:20 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759509Ab0HLA37 (ORCPT ); Wed, 11 Aug 2010 20:29:59 -0400 Received: from comal.ext.ti.com ([198.47.26.152]:56813 "EHLO comal.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759336Ab0HLA3z (ORCPT ); Wed, 11 Aug 2010 20:29:55 -0400 Received: from dlep35.itg.ti.com ([157.170.170.118]) by comal.ext.ti.com (8.13.7/8.13.7) with ESMTP id o7C0TsXd002184 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 11 Aug 2010 19:29:54 -0500 Received: from dlep26.itg.ti.com (localhost [127.0.0.1]) by dlep35.itg.ti.com (8.13.7/8.13.7) with ESMTP id o7C0Ts6J013337; Wed, 11 Aug 2010 19:29:54 -0500 (CDT) Received: from dlee75.ent.ti.com (localhost [127.0.0.1]) by dlep26.itg.ti.com (8.13.8/8.13.8) with ESMTP id o7C0TshI012135; Wed, 11 Aug 2010 19:29:54 -0500 (CDT) Received: from dlee03.ent.ti.com ([157.170.170.18]) by dlee75.ent.ti.com ([157.170.170.72]) with mapi; Wed, 11 Aug 2010 19:29:54 -0500 From: "Que, Simon" To: Linux Omap , Tony Lindgren CC: "Cousson, Benoit" , "Shilimkar, Santosh" , "Premi, Sanjeev" , "Kanigeri, Hari" Date: Wed, 11 Aug 2010 19:29:51 -0500 Subject: [PATCH 4/4 v2] omap: hwspinlock: Patch to add support to build hwspinlock modules Thread-Topic: [PATCH 4/4 v2] omap: hwspinlock: Patch to add support to build hwspinlock modules Thread-Index: Acs5tXpQUbzLOByyRIO43mVXgQBiFA== Message-ID: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: yes X-MS-TNEF-Correlator: acceptlanguage: en-US MIME-Version: 1.0 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.3 (demeter.kernel.org [140.211.167.41]); Thu, 12 Aug 2010 00:30:21 +0000 (UTC) diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile index 630f880..fe49340 100644 --- a/arch/arm/mach-omap2/Makefile +++ b/arch/arm/mach-omap2/Makefile @@ -176,3 +176,5 @@ obj-y += $(nand-m) $(nand-y) smc91x-$(CONFIG_SMC91X) := gpmc-smc91x.o obj-y += $(smc91x-m) $(smc91x-y) + +obj-$(CONFIG_ARCH_OMAP4) += hwspinlocks.o diff --git a/arch/arm/plat-omap/Makefile b/arch/arm/plat-omap/Makefile index ea8e555..c9f79d5 100644 --- a/arch/arm/plat-omap/Makefile +++ b/arch/arm/plat-omap/Makefile @@ -34,3 +34,5 @@ obj-$(CONFIG_OMAP_REMOTE_PROC) += remoteproc.o obj-$(CONFIG_OMAP_PM_NOOP) += omap-pm-noop.o obj-$(CONFIG_OMAP_PM) += omap-pm.o + +obj-$(CONFIG_ARCH_OMAP4) += hwspinlock.o