summaryrefslogtreecommitdiffstats
path: root/edd
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-08-24 18:07:35 +0000
committerMatt Wilson <msw@redhat.com>2001-08-24 18:07:35 +0000
commit23849cfeb7cfe54bf4e8722920fd014863f287a8 (patch)
treeaeb7112660d448e987d8402c22cc0a4c3b426c0a /edd
parent8bdf6d8d7744ba048001acd142d6ffb29ee70e89 (diff)
downloadanaconda-23849cfeb7cfe54bf4e8722920fd014863f287a8.tar.gz
anaconda-23849cfeb7cfe54bf4e8722920fd014863f287a8.tar.xz
anaconda-23849cfeb7cfe54bf4e8722920fd014863f287a8.zip
get rid of some dumb error reports
Diffstat (limited to 'edd')
-rw-r--r--edd/edd.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/edd/edd.c b/edd/edd.c
index ad360a449..fbad48723 100644
--- a/edd/edd.c
+++ b/edd/edd.c
@@ -160,8 +160,11 @@ edd_supported(int drive)
ec->version.major = 3;
ec->version.minor = 0;
} else {
- fprintf (stderr, "WARNING: Unknown EDD version 0x%x supported\n",
- regs.eax & 0xff00);
+/* fprintf (stderr, "WARNING: Unknown EDD version 0x%x supported\n", */
+/* regs.eax & 0xff00); */
+ /* XXX hack, get rid of stderr output */
+ ec->version.major = 1;
+ ec->version.minor = 0;
}
if (regs.ecx & EDD_CAPABILITY_EDA)
ec->eda = 1;