From patchwork Thu Jul 11 13:09:05 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Felipe Balbi X-Patchwork-Id: 2826337 Return-Path: X-Original-To: patchwork-linux-omap@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 4A50C9F7D6 for ; Thu, 11 Jul 2013 13:09:46 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id A2E3E200DF for ; Thu, 11 Jul 2013 13:09:41 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 6C8DF20187 for ; Thu, 11 Jul 2013 13:09:39 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932298Ab3GKNJa (ORCPT ); Thu, 11 Jul 2013 09:09:30 -0400 Received: from bear.ext.ti.com ([192.94.94.41]:53747 "EHLO bear.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932260Ab3GKNJ2 (ORCPT ); Thu, 11 Jul 2013 09:09:28 -0400 Received: from dlelxv90.itg.ti.com ([172.17.2.17]) by bear.ext.ti.com (8.13.7/8.13.7) with ESMTP id r6BD9NwN032547; Thu, 11 Jul 2013 08:09:23 -0500 Received: from DFLE72.ent.ti.com (dfle72.ent.ti.com [128.247.5.109]) by dlelxv90.itg.ti.com (8.14.3/8.13.8) with ESMTP id r6BD9N1c004095; Thu, 11 Jul 2013 08:09:23 -0500 Received: from dlelxv22.itg.ti.com (172.17.1.197) by DFLE72.ent.ti.com (128.247.5.109) with Microsoft SMTP Server id 14.2.342.3; Thu, 11 Jul 2013 08:09:23 -0500 Received: from localhost (h79-16.vpn.ti.com [172.24.79.16]) by dlelxv22.itg.ti.com (8.13.8/8.13.8) with ESMTP id r6BD9M6j008948; Thu, 11 Jul 2013 08:09:23 -0500 From: Felipe Balbi To: CC: , , Balaji T K , , Tony Lindgren , , , Felipe Balbi Subject: [PATCH] mmc: omap_hsmmc: fix dependency on indirect header inclusion Date: Thu, 11 Jul 2013 16:09:05 +0300 Message-ID: <1373548145-3833-1-git-send-email-balbi@ti.com> X-Mailer: git-send-email 1.8.2.1 MIME-Version: 1.0 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Spam-Status: No, score=-7.2 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP omap_hsmmc.c depends on being included indirectly by another header. Once we enable COMPILE_TEST for this driver, we might compile under architectures which won't include for us. In fact, one such case is x86. In order to prevent compile breakages, let's explicitly include Signed-off-by: Felipe Balbi Acked-by: Balaji T K --- This should be applied before http://marc.info/?l=linux-omap&m=137347241524118&w=2 in order to maintain bisectability. cheers drivers/mmc/host/omap_hsmmc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/mmc/host/omap_hsmmc.c b/drivers/mmc/host/omap_hsmmc.c index 1865321..c937ffc 100644 --- a/drivers/mmc/host/omap_hsmmc.c +++ b/drivers/mmc/host/omap_hsmmc.c @@ -21,6 +21,7 @@ #include #include #include +#include #include #include #include