[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1359976100-28871-2-git-send-email-hdoyu@nvidia.com>
Date: Mon, 4 Feb 2013 13:08:19 +0200
From: Hiroshi Doyu <hdoyu@...dia.com>
To: <linux-kernel@...r.kernel.org>
CC: Stephen Rothwell <sfr@...b.auug.org.au>,
<linux-tegra@...r.kernel.org>, Sami Liedes <sliedes@...dia.com>,
Hiroshi Doyu <hdoyu@...dia.com>,
Stephen Warren <swarren@...dotorg.org>,
Russell King <linux@....linux.org.uk>,
Mark Brown <broonie@...nsource.wolfsonmicro.com>,
Greg Kroah-Hartman <gregkh@...uxfoundation.org>,
<linux-arm-kernel@...ts.infradead.org>
Subject: [PATCH 2/2] regmap: Fix build error next-20130204
In function 'regmap_async_complete_cb':
1656:3: error: 'TASK_NORMAL' undeclared (first use in this function)
In function 'regmap_async_complete':
1688:2: error: 'TASK_UNINTERRUPTIBLE' undeclared (first use in this function)
Signed-off-by: Hiroshi Doyu <hdoyu@...dia.com>
---
drivers/base/regmap/regmap.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/drivers/base/regmap/regmap.c b/drivers/base/regmap/regmap.c
index bee8560..49ec460 100644
--- a/drivers/base/regmap/regmap.c
+++ b/drivers/base/regmap/regmap.c
@@ -16,6 +16,8 @@
#include <linux/mutex.h>
#include <linux/err.h>
#include <linux/rbtree.h>
+#include <linux/sched.h>
+#include <linux/wait.h>
#define CREATE_TRACE_POINTS
#include <trace/events/regmap.h>
--
1.7.9.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists