From patchwork Fri Dec 30 12:47:21 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ulf Hansson X-Patchwork-Id: 89342 Delivered-To: patches@linaro.org Received: by 10.140.20.101 with SMTP id 92csp6424645qgi; Fri, 30 Dec 2016 04:48:10 -0800 (PST) X-Received: by 10.25.139.132 with SMTP id n126mr16569072lfd.20.1483102090016; Fri, 30 Dec 2016 04:48:10 -0800 (PST) Return-Path: Received: from mail-lf0-x22f.google.com (mail-lf0-x22f.google.com. [2a00:1450:4010:c07::22f]) by mx.google.com with ESMTPS id m129si33054075lfe.144.2016.12.30.04.48.09 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 30 Dec 2016 04:48:10 -0800 (PST) Received-SPF: pass (google.com: domain of ulf.hansson@linaro.org designates 2a00:1450:4010:c07::22f as permitted sender) client-ip=2a00:1450:4010:c07::22f; 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::22f as permitted sender) smtp.mailfrom=ulf.hansson@linaro.org; dmarc=pass (p=NONE dis=NONE) header.from=linaro.org Received: by mail-lf0-x22f.google.com with SMTP id t196so236783151lff.3 for ; Fri, 30 Dec 2016 04:48:09 -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=KMp6du7/jeBLQHi2xwktQPP3c8Rur6RWGpnwdbFXwpk=; b=LRQZ4iO55zl2/pG6E0FGLE7u/QhlW4qEJbrxli3oZA/Y1LE7AZiN3G8BgMCXM9LecC vlS3ggaMYVfAaQhHq1WIZc/HoNkfup19PKF99qRyVFoDtlduwCYgvOeLfuqF1lGquTok HbXMQCZPZA56WrrMMC6BhxijppeGtgKLR+TUI= 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=KMp6du7/jeBLQHi2xwktQPP3c8Rur6RWGpnwdbFXwpk=; b=P4SQGrJSnJ6LfvocyTGb5fiyaCDCtNLx3b50sdFC2NpALfbbnUBM7JjZgmGZmfvgZS +H2DxQOv0QXDA0QI62D3eYQHUbLAJQ/LV0e20wimxzi5sA2S4g6bR/fe/El+7FUQ634L +X/Um3zPLqQAoBVCJJ2+E9oB1hsrtgVAvNqUzwPc1dlbVQ2Z0zR4BFlnxaBEXPPz1tG6 aEK8tdnzgUN10WHBY4aJ16Vk29WoMoi8b0bzrirL1R2XWVfGKtYppzmfaVFxf7uToeKF L7ZQjQsDkFOQvf6rxzGkhruEeXget9H6pHBNzpvqe3FZh/5Q94ZZ312iRIhsih2CKdt+ P9yA== X-Gm-Message-State: AIkVDXLYzrzKWF/fAO1Mv/8K/sNLOFwX1ttBd0EmmA5DqxK63h+xPv1sWGMMJ7BaMqYjCJ/3XPE= X-Received: by 10.46.77.92 with SMTP id a89mr15917384ljb.28.1483102089611; Fri, 30 Dec 2016 04:48:09 -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 a79sm7450069ljb.46.2016.12.30.04.48.06 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 30 Dec 2016 04:48:08 -0800 (PST) From: Ulf Hansson To: linux-mmc@vger.kernel.org, Ulf Hansson Cc: Jaehoon Chung , Adrian Hunter , Linus Walleij , Masahiro Yamada Subject: [PATCH 08/21] mmc: sdhci-cadence: Include mmc.h Date: Fri, 30 Dec 2016 13:47:21 +0100 Message-Id: <1483102054-1752-9-git-send-email-ulf.hansson@linaro.org> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1483102054-1752-1-git-send-email-ulf.hansson@linaro.org> References: <1483102054-1752-1-git-send-email-ulf.hansson@linaro.org> Don't rely on host.h to include the mmc.h header, but instead include it explicitly because the driver depends on it. Cc: Masahiro Yamada Signed-off-by: Ulf Hansson --- drivers/mmc/host/sdhci-cadence.c | 1 + 1 file changed, 1 insertion(+) -- 1.9.1 Reviewed-by: Linus Walleij Acked-by: Adrian Hunter diff --git a/drivers/mmc/host/sdhci-cadence.c b/drivers/mmc/host/sdhci-cadence.c index 4b0ecb9..31e786d 100644 --- a/drivers/mmc/host/sdhci-cadence.c +++ b/drivers/mmc/host/sdhci-cadence.c @@ -17,6 +17,7 @@ #include #include #include +#include #include "sdhci-pltfm.h"