2013-08-06 16:35:04

by Mateusz Krawczuk

[permalink] [raw]
Subject: [PATCH] Regmap: Add missing header

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: Kyungmin Park <[email protected]>
Signed-off-by: Mateusz Krawczuk <[email protected]>
---
include/linux/regmap.h | 1 +
1 file changed, 1 insertion(+)

diff --git a/include/linux/regmap.h b/include/linux/regmap.h
index a3c68aa..bafda87 100644
--- a/include/linux/regmap.h
+++ b/include/linux/regmap.h
@@ -15,6 +15,7 @@

#include <linux/list.h>
#include <linux/rbtree.h>
+#include <linux/err.h>

struct module;
struct device;
--
1.7.9.5


2013-08-06 18:47:10

by Mark Brown

[permalink] [raw]
Subject: Re: [PATCH] Regmap: Add missing header

On Tue, Aug 06, 2013 at 06:34:40PM +0200, Mateusz Krawczuk wrote:
> regmap.h requires linux/err.h if CONFIG_REGMAP is not defined. Without it I get
> error.

Applied, thanks.


Attachments:
(No filename) (175.00 B)
signature.asc (836.00 B)
Digital signature
Download all attachments