From patchwork Wed Sep 12 21:15:50 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vaibhav Hiremath X-Patchwork-Id: 1446841 Return-Path: X-Original-To: patchwork-linux-omap@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id F05943FCFC for ; Wed, 12 Sep 2012 21:16:41 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753868Ab2ILVQA (ORCPT ); Wed, 12 Sep 2012 17:16:00 -0400 Received: from bear.ext.ti.com ([192.94.94.41]:36350 "EHLO bear.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753688Ab2ILVP7 (ORCPT ); Wed, 12 Sep 2012 17:15:59 -0400 Received: from dbdp20.itg.ti.com ([172.24.170.38]) by bear.ext.ti.com (8.13.7/8.13.7) with ESMTP id q8CLFudK013785; Wed, 12 Sep 2012 16:15:57 -0500 Received: from DBDE71.ent.ti.com (localhost [127.0.0.1]) by dbdp20.itg.ti.com (8.13.8/8.13.8) with ESMTP id q8CLFubB020038; Thu, 13 Sep 2012 02:45:56 +0530 (IST) Received: from dbdp32.itg.ti.com (172.24.170.251) by DBDE71.ent.ti.com (172.24.170.149) with Microsoft SMTP Server id 14.1.323.3; Thu, 13 Sep 2012 02:45:56 +0530 Received: from localhost.localdomain (dbdp20.itg.ti.com [172.24.170.38]) by dbdp32.itg.ti.com (8.13.8/8.13.8) with ESMTP id q8CLFrxY030388; Thu, 13 Sep 2012 02:45:55 +0530 From: Vaibhav Hiremath To: CC: , , , Vaibhav Hiremath Subject: [PATCH 1/2] ARM: AM33XX: hwmod: Remove platform specific header files Date: Thu, 13 Sep 2012 02:45:50 +0530 Message-ID: <1347484551-11775-2-git-send-email-hvaibhav@ti.com> X-Mailer: git-send-email 1.7.0.4 In-Reply-To: <1347484551-11775-1-git-send-email-hvaibhav@ti.com> References: <1347484551-11775-1-git-send-email-hvaibhav@ti.com> MIME-Version: 1.0 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org With recent mainline changes on gpio and mcspi drivers, the platform specific header files (plat/gpio.h and plat/mcspi.h) have been removed, which results into build failure on AM33XX hwmod data, which was still using these headers. This patch removes such both gpio and spi header file entry from omap_hwmod_33xx_data.c. Signed-off-by: Vaibhav Hiremath Cc: Paul Walmsley --- arch/arm/mach-omap2/omap_hwmod_33xx_data.c | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/arch/arm/mach-omap2/omap_hwmod_33xx_data.c b/arch/arm/mach-omap2/omap_hwmod_33xx_data.c index de7a3ab..7b7ed08 100644 --- a/arch/arm/mach-omap2/omap_hwmod_33xx_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_33xx_data.c @@ -14,12 +14,14 @@ * GNU General Public License for more details. */ +#include +#include +#include + #include #include -#include #include #include -#include #include #include "omap_hwmod_common_data.h"