diff options
author | Alan Cox <alan@lxorguk.ukuu.org.uk> | 2006-01-16 12:18:05 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-17 02:31:28 -0500 |
commit | f099bfb7089735ad1760b3c6938069af10a88cc0 (patch) | |
tree | 400a33d80c643bcdd231f47b346c37d2b933c038 /drivers | |
parent | c7306c02874bf4d22bc0b1dbea34282d0b9a3df1 (diff) |
[PATCH] Remove unused code from rioboot.h
Signed-off-by: Alan Cox <alan@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/char/rio/rioboot.c | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/drivers/char/rio/rioboot.c b/drivers/char/rio/rioboot.c index 34cbb13aad4b..92df43552f15 100644 --- a/drivers/char/rio/rioboot.c +++ b/drivers/char/rio/rioboot.c | |||
@@ -665,13 +665,6 @@ struct PKT *PacketP; | |||
665 | struct CmdBlk *CmdBlkP; | 665 | struct CmdBlk *CmdBlkP; |
666 | uint sequence; | 666 | uint sequence; |
667 | 667 | ||
668 | #ifdef CHECK | ||
669 | CheckHost(Host); | ||
670 | CheckRup(Rup); | ||
671 | CheckHostP(HostP); | ||
672 | CheckPacketP(PacketP); | ||
673 | #endif | ||
674 | |||
675 | /* | 668 | /* |
676 | ** If we haven't been told what to boot, we can't boot it. | 669 | ** If we haven't been told what to boot, we can't boot it. |
677 | */ | 670 | */ |
@@ -956,11 +949,6 @@ static int RIOBootComplete( struct rio_info *p, struct Host *HostP, uint Rup, st | |||
956 | MyType = "RTA"; | 949 | MyType = "RTA"; |
957 | MyName = HostP->Mapping[Rup].Name; | 950 | MyName = HostP->Mapping[Rup].Name; |
958 | } | 951 | } |
959 | #ifdef CHECK | ||
960 | CheckString(MyType); | ||
961 | CheckString(MyName); | ||
962 | #endif | ||
963 | |||
964 | MyLink = RBYTE(PktCmdP->LinkNum); | 952 | MyLink = RBYTE(PktCmdP->LinkNum); |
965 | 953 | ||
966 | /* | 954 | /* |
@@ -1309,52 +1297,3 @@ struct Host *HostP; | |||
1309 | } | 1297 | } |
1310 | } | 1298 | } |
1311 | 1299 | ||
1312 | #if 0 | ||
1313 | /* | ||
1314 | Function: This function is to disable the disk interrupt | ||
1315 | Returns : Nothing | ||
1316 | */ | ||
1317 | void | ||
1318 | disable_interrupt(vector) | ||
1319 | int vector; | ||
1320 | { | ||
1321 | int ps; | ||
1322 | int val; | ||
1323 | |||
1324 | disable(ps); | ||
1325 | if (vector > 40) { | ||
1326 | val = 1 << (vector - 40); | ||
1327 | __outb(S8259+1, __inb(S8259+1) | val); | ||
1328 | } | ||
1329 | else { | ||
1330 | val = 1 << (vector - 32); | ||
1331 | __outb(M8259+1, __inb(M8259+1) | val); | ||
1332 | } | ||
1333 | restore(ps); | ||
1334 | } | ||
1335 | |||
1336 | /* | ||
1337 | Function: This function is to enable the disk interrupt | ||
1338 | Returns : Nothing | ||
1339 | */ | ||
1340 | void | ||
1341 | enable_interrupt(vector) | ||
1342 | int vector; | ||
1343 | { | ||
1344 | int ps; | ||
1345 | int val; | ||
1346 | |||
1347 | disable(ps); | ||
1348 | if (vector > 40) { | ||
1349 | val = 1 << (vector - 40); | ||
1350 | val = ~val; | ||
1351 | __outb(S8259+1, __inb(S8259+1) & val); | ||
1352 | } | ||
1353 | else { | ||
1354 | val = 1 << (vector - 32); | ||
1355 | val = ~val; | ||
1356 | __outb(M8259+1, __inb(M8259+1) & val); | ||
1357 | } | ||
1358 | restore(ps); | ||
1359 | } | ||
1360 | #endif | ||