Commit 9d5dd622 authored by Pete Zaitcev's avatar Pete Zaitcev Committed by Linus Torvalds

[PATCH] Patch to irq compat stuff in 2.5.32

This came up in 2.5.30, apparently someone was fooled by names
which do not quite match actual functions.
parent b6b7580f
......@@ -50,9 +50,9 @@ enum {
#if !CONFIG_SMP
# define cli() local_irq_disable()
# define sti() local_irq_enable()
# define save_flags(x) local_irq_save(x)
# define save_flags(x) local_save_flags(x)
# define restore_flags(x) local_irq_restore(x)
# define save_and_cli(x) local_irq_save_off(x)
# define save_and_cli(x) local_irq_save(x)
#endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment