提交 f099bfb7 编写于 作者: A Alan Cox 提交者: Linus Torvalds

[PATCH] Remove unused code from rioboot.h

Signed-off-by: NAlan Cox <alan@redhat.com>
Signed-off-by: NLinus Torvalds <torvalds@osdl.org>
上级 c7306c02
...@@ -665,13 +665,6 @@ struct PKT *PacketP; ...@@ -665,13 +665,6 @@ struct PKT *PacketP;
struct CmdBlk *CmdBlkP; struct CmdBlk *CmdBlkP;
uint sequence; uint sequence;
#ifdef CHECK
CheckHost(Host);
CheckRup(Rup);
CheckHostP(HostP);
CheckPacketP(PacketP);
#endif
/* /*
** If we haven't been told what to boot, we can't boot it. ** If we haven't been told what to boot, we can't boot it.
*/ */
...@@ -956,11 +949,6 @@ static int RIOBootComplete( struct rio_info *p, struct Host *HostP, uint Rup, st ...@@ -956,11 +949,6 @@ static int RIOBootComplete( struct rio_info *p, struct Host *HostP, uint Rup, st
MyType = "RTA"; MyType = "RTA";
MyName = HostP->Mapping[Rup].Name; MyName = HostP->Mapping[Rup].Name;
} }
#ifdef CHECK
CheckString(MyType);
CheckString(MyName);
#endif
MyLink = RBYTE(PktCmdP->LinkNum); MyLink = RBYTE(PktCmdP->LinkNum);
/* /*
...@@ -1309,52 +1297,3 @@ struct Host *HostP; ...@@ -1309,52 +1297,3 @@ struct Host *HostP;
} }
} }
#if 0
/*
Function: This function is to disable the disk interrupt
Returns : Nothing
*/
void
disable_interrupt(vector)
int vector;
{
int ps;
int val;
disable(ps);
if (vector > 40) {
val = 1 << (vector - 40);
__outb(S8259+1, __inb(S8259+1) | val);
}
else {
val = 1 << (vector - 32);
__outb(M8259+1, __inb(M8259+1) | val);
}
restore(ps);
}
/*
Function: This function is to enable the disk interrupt
Returns : Nothing
*/
void
enable_interrupt(vector)
int vector;
{
int ps;
int val;
disable(ps);
if (vector > 40) {
val = 1 << (vector - 40);
val = ~val;
__outb(S8259+1, __inb(S8259+1) & val);
}
else {
val = 1 << (vector - 32);
val = ~val;
__outb(M8259+1, __inb(M8259+1) & val);
}
restore(ps);
}
#endif
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册