From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Message-Id: <20130911042920.488160985@goodmis.org> Date: Wed, 11 Sep 2013 00:29:56 -0400 From: Steven Rostedt To: linux-kernel@vger.kernel.org, stable@vger.kernel.org Cc: Mateusz Krawczuk , Kyungmin Park , Mark Brown , Subject: [169/251] regmap: Add missing header for !CONFIG_REGMAP stubs References: <20130911042707.738353451@goodmis.org> Content-Disposition: inline; filename=0169-regmap-Add-missing-header-for-CONFIG_REGMAP-stubs.patch Sender: linux-kernel-owner@vger.kernel.org List-ID: 3.6.11.9-rc1 stable review patch. If anyone has any objections, please let me know. ------------------ From: Mateusz Krawczuk [ Upstream commit 49ccc142f9cbc33fdda18e8fa90c1c5b4a79c0ad ] regmap.h requires linux/err.h if CONFIG_REGMAP is not defined. Without it I get error. CC drivers/media/platform/exynos4-is/fimc-reg.o In file included from drivers/media/platform/exynos4-is/fimc-reg.c:14:0: include/linux/regmap.h: In function ‘regmap_write’: include/linux/regmap.h:525:10: error: ‘EINVAL’ undeclared (first use in this function) include/linux/regmap.h:525:10: note: each undeclared identifier is reported only once for each function it appears in Signed-off-by: Mateusz Krawczuk Signed-off-by: Kyungmin Park Signed-off-by: Mark Brown Cc: stable@kernel.org Signed-off-by: Steven Rostedt --- include/linux/regmap.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/linux/regmap.h b/include/linux/regmap.h index 7f7e00d..519d5f2 100644 --- a/include/linux/regmap.h +++ b/include/linux/regmap.h @@ -15,6 +15,7 @@ #include #include +#include struct module; struct device; -- 1.7.10.4