[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1232889227-20887-1-git-send-email-u.kleine-koenig@pengutronix.de>
Date: Sun, 25 Jan 2009 14:13:44 +0100
From: Uwe Kleine-König
<u.kleine-koenig@...gutronix.de>
To: linux-kernel@...r.kernel.org
Cc: linux-arm-kernel@...ts.arm.linux.org.uk,
Steven Rostedt <rostedt@...dmis.org>
Subject: [PATCH] fix compilation error in ide code
Commit 97b45b274f48aeec changed a local_save_flags to
local_save_flags_nort which is not defined and not used anywhere else.
Change this back to local_save_flags as there is no reason not to read
the flags in RT code.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@...gutronix.de>
Cc: Steven Rostedt <rostedt@...dmis.org>
---
include/linux/ide.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/linux/ide.h b/include/linux/ide.h
index dc5ac49..a3cf9c1 100644
--- a/include/linux/ide.h
+++ b/include/linux/ide.h
@@ -1622,7 +1622,7 @@ extern struct mutex ide_cfg_mtx;
#define local_irq_set(flags) \
do { \
- local_save_flags_nort((flags)); \
+ local_save_flags((flags)); \
local_irq_enable_in_hardirq(); \
} while (0)
--
1.5.6.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