Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752044AbbH2BU5 (ORCPT ); Fri, 28 Aug 2015 21:20:57 -0400 Received: from g4t3426.houston.hp.com ([15.201.208.54]:50398 "EHLO g4t3426.houston.hp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751967AbbH2BUz (ORCPT ); Fri, 28 Aug 2015 21:20:55 -0400 From: Toshi Kani To: dan.j.williams@intel.com Cc: ross.zwisler@linux.intel.com, linux-nvdimm@ml01.01.org, linux-kernel@vger.kernel.org, Toshi Kani Subject: [PATCH] nfit: Fix undefined mmio_flush_range on x86_32 Date: Fri, 28 Aug 2015 19:18:44 -0600 Message-Id: <1440811124-1634-1-git-send-email-toshi.kani@hp.com> X-Mailer: git-send-email 2.4.3 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1253 Lines: 37 The following compile error was observed on x86_32 since nfit.c relies on to include , which only works when CONFIG_ARCH_HAS_PMEM_API is set on x86_64. drivers/acpi/nfit.c:1085:5: error: implicit declaration of function 'mmio_flush_range' [-Werror=implicit-function-declaration] Change nfit.c to include directly for now. Signed-off-by: Toshi Kani Cc: Dan Williams Cc: Ross Zwisler --- Apply on top of libnvdimm-for-next of the nvdimm tree. This is a temporary fix and please feel free to replace it with a better solution. --- drivers/acpi/nfit.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/acpi/nfit.c b/drivers/acpi/nfit.c index 82d07e8..f61e69f 100644 --- a/drivers/acpi/nfit.c +++ b/drivers/acpi/nfit.c @@ -20,6 +20,7 @@ #include #include #include +#include #include "nfit.h" /* -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/