From patchwork Mon Feb 4 11:08:19 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [2/2] regmap: Fix build error next-20130204 Date: Mon, 04 Feb 2013 01:08:19 -0000 From: Hiroshi Doyu X-Patchwork-Id: 217866 Message-Id: <1359976100-28871-2-git-send-email-hdoyu@nvidia.com> To: Cc: Stephen Rothwell , , Sami Liedes , Hiroshi Doyu , Stephen Warren , Russell King , Mark Brown , Greg Kroah-Hartman , 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 --- 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 #include #include +#include +#include #define CREATE_TRACE_POINTS #include