summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sys/dev/ic/dc.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/sys/dev/ic/dc.c b/sys/dev/ic/dc.c
index 74e2c5cc32b..9aa9fa81166 100644
--- a/sys/dev/ic/dc.c
+++ b/sys/dev/ic/dc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: dc.c,v 1.3 2000/06/12 16:46:53 mickey Exp $ */
+/* $OpenBSD: dc.c,v 1.4 2000/06/12 16:49:24 mickey Exp $ */
/*
* Copyright (c) 1997, 1998, 1999
@@ -225,7 +225,6 @@ void dc_delay(sc)
void dc_eeprom_width(sc)
struct dc_softc *sc;
{
- u_int16_t word;
int i;
/* Force EEPROM to idle state. */
@@ -286,15 +285,6 @@ void dc_eeprom_width(sc)
DC_SETBIT(sc, DC_SIO, DC_SIO_EE_CS);
dc_delay(sc);
- printf("\n");
- for (i = 0; i < 256; i++) {
- if (DC_IS_PNIC(sc))
- dc_eeprom_getword_pnic(sc, i, &word);
- else
- dc_eeprom_getword(sc, i, &word);
- printf("%04x%s", word, ((i & 15) == 15)? "\n": " ");
- }
-
/* Turn off EEPROM access mode. */
dc_eeprom_idle(sc);
}