Commit 0b1639fc authored by Alan Cox's avatar Alan Cox Committed by Linus Torvalds

[PATCH] fix up the smc9194 - the extra locks arent needed

parent 645870ac
......@@ -713,11 +713,6 @@ int __init smc_findirq( int ioaddr )
unsigned long cookie;
/* I have to do a STI() here, because this is called from
a routine that does an CLI during this process, making it
rather difficult to get interrupts for auto detection */
sti();
cookie = probe_irq_on();
/*
......@@ -766,10 +761,6 @@ int __init smc_findirq( int ioaddr )
/* and disable all interrupts again */
outb( 0, ioaddr + INT_MASK );
/* clear hardware interrupts again, because that's how it
was when I was called... */
cli();
/* and return what I found */
return probe_irq_off(cookie);
}
......
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