Commit 449f9371 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Linus Torvalds

[PATCH] Nubus local_irq*() updates

Convert core NuBus code to new local_irq*() framework
parent 1331f843
...@@ -915,10 +915,9 @@ void __init nubus_probe_slot(int slot) ...@@ -915,10 +915,9 @@ void __init nubus_probe_slot(int slot)
int card_present; int card_present;
rp--; rp--;
save_flags(flags); local_irq_save(flags);
cli();
card_present = hwreg_present(rp); card_present = hwreg_present(rp);
restore_flags(flags); local_irq_restore(flags);
if (!card_present) if (!card_present)
continue; continue;
......
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