From: Kevin O'Connor Date: Sun, 23 Mar 2008 03:57:21 +0000 (-0400) Subject: Remove redundant debug statements from disk.c. X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=f04d5c79054f4a2c2ea8edd343414077dcf5162e;p=seabios.git Remove redundant debug statements from disk.c. Calls to disk_ret with an error code already log - don't log twice. --- diff --git a/src/disk.c b/src/disk.c index bc20b12..880052b 100644 --- a/src/disk.c +++ b/src/disk.c @@ -537,7 +537,6 @@ disk_134e06(struct bregs *regs, u8 device) static void disk_134eXX(struct bregs *regs, u8 device) { - debug_stub(regs); disk_ret(regs, DISK_RET_EPARAM); } @@ -557,7 +556,6 @@ disk_134e(struct bregs *regs, u8 device) void disk_13XX(struct bregs *regs, u8 device) { - debug_stub(regs); disk_ret(regs, DISK_RET_EPARAM); }