diff options
author | briggs <briggs@cvs.openbsd.org> | 1997-04-07 12:45:21 +0000 |
---|---|---|
committer | briggs <briggs@cvs.openbsd.org> | 1997-04-07 12:45:21 +0000 |
commit | ec6db4e18d8d45ce9d56b494e227244375732e4a (patch) | |
tree | 11c2d437faada17c9127c2da85ade6bf781ccac2 /sys | |
parent | 427443332236d3afb07d4e56422e19e25e2a1475 (diff) |
Denny suggests that we make all Quadra cases the same. The Q700, at least
seems to be able to work with the Q650 configuration, but not vice-versa.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/mac68k/dev/if_sn_obio.c | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/sys/arch/mac68k/dev/if_sn_obio.c b/sys/arch/mac68k/dev/if_sn_obio.c index c3b5551734a..169a3ded164 100644 --- a/sys/arch/mac68k/dev/if_sn_obio.c +++ b/sys/arch/mac68k/dev/if_sn_obio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_sn_obio.c,v 1.8 1997/04/07 03:23:36 briggs Exp $ */ +/* $OpenBSD: if_sn_obio.c,v 1.9 1997/04/07 12:45:20 briggs Exp $ */ /* * Copyright (C) 1997 Allen Briggs @@ -92,18 +92,9 @@ sn_obio_attach(parent, self, aux) sc->snr_dcr2 = 0; switch (current_mac_model->machineid) { - case MACH_MACQ700: /* only tested on Q700 */ - case MACH_MACQ900: - case MACH_MACQ950: - sc->snr_dcr |= DCR_SYNC | DCR_LBR | DCR_DW32; - sc->bitmode = 1; - break; - - case MACH_MACQ800: - case MACH_MACQ650: - case MACH_MACC650: - case MACH_MACC610: - case MACH_MACQ610: + case MACH_MACQ700: case MACH_MACQ900: case MACH_MACQ950: + case MACH_MACQ800: case MACH_MACQ650: case MACH_MACC650: + case MACH_MACC610: case MACH_MACQ610: sc->snr_dcr |= DCR_EXBUS | DCR_DW32; sc->bitmode = 1; break; |