[PATCH] fix compilation error in ide code

From: Uwe Kleine-KÃnig
Date: Sun Jan 25 2009 - 08:14:00 EST


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@xxxxxxxxxxxxxx>
Cc: Steven Rostedt <rostedt@xxxxxxxxxxx>
---
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@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/