From patchwork Wed Jan 11 11:51:07 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ulf Hansson X-Patchwork-Id: 90850 Delivered-To: patches@linaro.org Received: by 10.140.20.99 with SMTP id 90csp1081601qgi; Wed, 11 Jan 2017 03:51:32 -0800 (PST) X-Received: by 10.25.27.145 with SMTP id b139mr2713427lfb.114.1484135492673; Wed, 11 Jan 2017 03:51:32 -0800 (PST) Return-Path: Received: from mail-lf0-x231.google.com (mail-lf0-x231.google.com. [2a00:1450:4010:c07::231]) by mx.google.com with ESMTPS id s127si3366591lja.20.2017.01.11.03.51.32 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Wed, 11 Jan 2017 03:51:32 -0800 (PST) Received-SPF: pass (google.com: domain of ulf.hansson@linaro.org designates 2a00:1450:4010:c07::231 as permitted sender) client-ip=2a00:1450:4010:c07::231; Authentication-Results: mx.google.com; dkim=pass header.i=@linaro.org; spf=pass (google.com: domain of ulf.hansson@linaro.org designates 2a00:1450:4010:c07::231 as permitted sender) smtp.mailfrom=ulf.hansson@linaro.org; dmarc=pass (p=NONE sp=NONE dis=NONE) header.from=linaro.org Received: by mail-lf0-x231.google.com with SMTP id k86so135177277lfi.0 for ; Wed, 11 Jan 2017 03:51:32 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references; bh=/OJsSbV1+ZEjLkH++fMIv5GVL8v9Y2usB0kGRsXzIvg=; b=UBUQUhrQzgTUuzb8lZYijuyTmep1g/ZmkwEbcfLQoe2k2kWBieJUItHh3a1GY6mqIc t/3tJ6Qh7mCREr+KQVgf4msvIXX9tyzXh+X4CfAehRh/Ky38LTgUsCbF5fvwx9ayVnYd KAL5eHUnub2mZS+oaXKC/BRY+RV8KJiT3ksK4= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references; bh=/OJsSbV1+ZEjLkH++fMIv5GVL8v9Y2usB0kGRsXzIvg=; b=HUeD5LeGAGCUFL2u+5yVNn2xXLbtOQPb8fWhiRkOLI51LBv58CluLsA8jFghNydIKt 8Bqr3WbKa8/tN4MtWaKzncEtCunPQ7HikcOwJUlcxVtAkUhUpQ+cK98IJTmoDAAu+a3B NL/+J4F2OZhaC5wTDdSTZKRGjbibPPq11mMzpKKdWnCfO9qYmU8xDMX4QJEvQDVrEzOJ HF+G0shJgH+EWdql4GMmj0Fu8hyasy0rMzH1joEh1RNZ+vRfhiSvk/cmOK2lAuqkMxBc 7nkxO5dus8MKT+iQRDpeRQEjzOQ4wQUtKihhZSKPNV3mAn4Dc+b8hVLYT7crcPkh/VzO 9UPg== X-Gm-Message-State: AIkVDXLNFmg1Yy7S+Fl8m2VNb5Mkw+2pIwYFE2FD2ix+c6w2uxFAHlUg2C+QsJtmaMvC+xqpsh0= X-Received: by 10.46.6.25 with SMTP id 25mr3318187ljg.64.1484135492260; Wed, 11 Jan 2017 03:51:32 -0800 (PST) Return-Path: Received: from localhost.localdomain (h-155-4-221-67.na.cust.bahnhof.se. [155.4.221.67]) by smtp.gmail.com with ESMTPSA id 87sm958768lft.27.2017.01.11.03.51.29 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 11 Jan 2017 03:51:30 -0800 (PST) From: Ulf Hansson To: linux-mmc@vger.kernel.org, Ulf Hansson Cc: Jaehoon Chung , Adrian Hunter , Linus Walleij Subject: [PATCH v2 01/12] mmc: mxcmmc: Include interrupt.h in the platform data header Date: Wed, 11 Jan 2017 12:51:07 +0100 Message-Id: <1484135478-2077-2-git-send-email-ulf.hansson@linaro.org> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1484135478-2077-1-git-send-email-ulf.hansson@linaro.org> References: <1484135478-2077-1-git-send-email-ulf.hansson@linaro.org> The mxcmmc platform data header depends on interrupt.h. Don't rely on the public mmc header host.h to include it, bud instead make that dependency explicit. Signed-off-by: Ulf Hansson --- include/linux/platform_data/mmc-mxcmmc.h | 1 + 1 file changed, 1 insertion(+) -- 1.9.1 diff --git a/include/linux/platform_data/mmc-mxcmmc.h b/include/linux/platform_data/mmc-mxcmmc.h index 29115f4..b0fdaa9 100644 --- a/include/linux/platform_data/mmc-mxcmmc.h +++ b/include/linux/platform_data/mmc-mxcmmc.h @@ -1,6 +1,7 @@ #ifndef ASMARM_ARCH_MMC_H #define ASMARM_ARCH_MMC_H +#include #include struct device;