mirror of
https://github.com/xcat2/xNBA.git
synced 2024-11-23 01:51:58 +00:00
[sis900] Enable interrupts to allow UNDI to work
Enable interrupts in sis900_irq(). Doing so allows some programs using gPXE's UNDI interface to work properly, including Symantec Ghost. Tested-by: Hubert Mercier <hubert.mercier@unilim.fr> Signed-off-by: Marty Connor <mdc@etherboot.org>
This commit is contained in:
parent
0ea6e5c221
commit
d07f79de35
@ -1183,8 +1183,12 @@ static int
|
||||
sis900_poll(struct nic *nic, int retrieve)
|
||||
{
|
||||
u32 rx_status = rxd[cur_rx].cmdsts;
|
||||
u32 intr_status;
|
||||
int retstat = 0;
|
||||
|
||||
/* acknowledge interrupts by reading interrupt status register */
|
||||
intr_status = inl(ioaddr + isr);
|
||||
|
||||
if (sis900_debug > 2)
|
||||
printf("sis900_poll: cur_rx:%d, status:%X\n", cur_rx,
|
||||
(unsigned int) rx_status);
|
||||
@ -1264,8 +1268,10 @@ sis900_irq(struct nic *nic __unused, irq_action_t action __unused)
|
||||
{
|
||||
switch ( action ) {
|
||||
case DISABLE :
|
||||
outl(0, ioaddr + imr);
|
||||
break;
|
||||
case ENABLE :
|
||||
outl((RxSOVR|RxORN|RxERR|RxOK|TxURN|TxERR|TxIDLE), ioaddr + imr);
|
||||
break;
|
||||
case FORCE :
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user