From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758563AbbKSMm1 (ORCPT ); Thu, 19 Nov 2015 07:42:27 -0500 Received: from mout.kundenserver.de ([217.72.192.75]:51328 "EHLO mout.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752511AbbKSMm0 (ORCPT ); Thu, 19 Nov 2015 07:42:26 -0500 From: Arnd Bergmann To: linux-mm@kvack.org Cc: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, akpm@linux-foundation.org, Chen Gang , Oleg Nesterov Subject: [PATCH] mm: include linux/pfn.h for PHYS_PFN definition Date: Thu, 19 Nov 2015 13:41:53 +0100 Message-ID: <5841074.QcbTqgbsZz@wuerfel> User-Agent: KMail/4.11.5 (Linux/3.16.0-10-generic; KDE/4.11.5; x86_64; ; ) MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Provags-ID: V03:K0:MYCU7mclOJH/3Gy9rpuBTGPXCI8KYYQOdmAufjKLnWIS7okPv6N /n78yd7lSfeSkR1gbGz9CoyZgxI0h1gtINNplqpTMPnsD2B9YwDUSAgmr6QVsmik4bNyJbD 3cINl+7t6RaCDFPzxzRiz64K1e1ub2RYsYLBBdDG6ueG/kKK3+TN15Rwv0FkuhyzAOkm2pi 3lFAFy3JTuJR+wFFldwvg== X-UI-Out-Filterresults: notjunk:1;V01:K0:EDEo6GEsI6s=:VeWLTqgdWlcOKAeesNbHMa +VYZf8Pfz6i6245TjA5pN5BHMheT9cKlGT655/osFgL6nWzEXOuTE4pHSJjiWb3fm1qdtR78f 76pokpwabQ1tnkjJAnUz7pCu3TrlC7Z8rscLR6ce4YnHLXSFf/SwuMzWqurdotAWeGUWMrrHc tBh1gVhvuPTih78tMz+k1EZoByeHWnVF5gNywY4xLF1jy3MdhqCNHXmilTn/A2Xsw0StAIMmh D5MdsjIzbuX5Hnm4U8P9JkxQbYnJZ4UH1iz4vqxpkdAzujTGVBJQz7s7eLUbzDfWCBhKK8xhf 3MhG6qohbhxAWapGcAgZptEKiFSnaA8KxJa389fFWZneMCmxDw7aCaKDw3LszckSMeq7quGTN pTGQEELyhcQXPj4ZivTl/WScgQJJEmPx1u/ceKSRDuA9dofSWGhjxDlEUd0nJlSwfBcphoLWE 5rJal7HWKe2qS2XPTzIznAQP0zV77R0dpHhUQ8Ac7e1mlYL4ZXqN1FB2ZHfDN/kUA45TCJ9qH WrbhVl045woBZq0FUpsfmnyyt+XZX11aWH0PIYZfta4L2mUllcC0umEMnU0OwpkSLKa0Tjwi6 AP2UQFlQC8GZpEpJuAPki+/emljKg51lkPJfNcmaFtM3I9kYyBzeqQvYTs82oiuzKfN4wD9Ub uiWNJgG+BFZW8Bw9bPXgvbIMG6+7woaifQybGvdueQiT86rkL3NhFhUUtRhyR9N9W4i3lS2XZ ZL3TpBYy5f0bIuq6 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org A change to asm-generic/memory_model.h caused a new build error in some configurations: mach-clps711x/common.c:39:10: error: implicit declaration of function 'PHYS_PFN' .pfn = __phys_to_pfn(CLPS711X_PHYS_BASE), This includes the linux/pfn.h header from the same file to avoid the error. Signed-off-by: Arnd Bergmann Fixes: bf1c6c9895de ("mm: add PHYS_PFN, use it in __phys_to_pfn()") --- I was listed as 'Cc' on the original patch, but don't see it in my inbox. I can queue up the fixed version in the asm-generic tree if you like that, otherwise please fold this fixup into the patch, or drop it if we want to avoid the extra #include. diff --git a/include/asm-generic/memory_model.h b/include/asm-generic/memory_model.h index c785a79d9385..5148150cc80b 100644 --- a/include/asm-generic/memory_model.h +++ b/include/asm-generic/memory_model.h @@ -1,6 +1,8 @@ #ifndef __ASM_MEMORY_MODEL_H #define __ASM_MEMORY_MODEL_H +#include + #ifndef __ASSEMBLY__ #if defined(CONFIG_FLATMEM)