Messages in this thread Patch in this message |  | | | From | Uwe Kleine-König <> | | Subject | [PATCH] fix compilation error in ide code | | Date | Sun, 25 Jan 2009 14:13:44 +0100 |
| |
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@pengutronix.de> Cc: Steven Rostedt <rostedt@goodmis.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@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |