summaryrefslogtreecommitdiff
path: root/sys/arch/mvme88k/dev
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2003-02-11 19:20:29 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2003-02-11 19:20:29 +0000
commit9f03a5af0492cb853685880bbbd9cbc622fa942f (patch)
tree96c6440dfb40fb88110394ed46c228cde9f0922d /sys/arch/mvme88k/dev
parentba0bc613711d8eafa59eaaaad0a136d1566e7e36 (diff)
be consistant on Hz vs hz
Diffstat (limited to 'sys/arch/mvme88k/dev')
-rw-r--r--sys/arch/mvme88k/dev/ssh.c6
-rw-r--r--sys/arch/mvme88k/dev/sshreg.h10
2 files changed, 8 insertions, 8 deletions
diff --git a/sys/arch/mvme88k/dev/ssh.c b/sys/arch/mvme88k/dev/ssh.c
index 545c8dbc6a1..415b6855040 100644
--- a/sys/arch/mvme88k/dev/ssh.c
+++ b/sys/arch/mvme88k/dev/ssh.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh.c,v 1.12 2002/03/14 01:26:39 millert Exp $ */
+/* $OpenBSD: ssh.c,v 1.13 2003/02/11 19:20:26 mickey Exp $ */
/*
* Copyright (c) 1994 Michael L. Hitch
@@ -108,7 +108,7 @@ int ssh_init_wait = SCSI_INIT_WAIT;
#ifdef DEBUG_SYNC
/*
- * sync period transfer lookup - only valid for 66Mhz clock
+ * sync period transfer lookup - only valid for 66MHz clock
*/
static struct {
unsigned char p; /* period from sync request message */
@@ -1786,7 +1786,7 @@ sshintr (sc)
}
/*
- * This is based on the Progressive Peripherals 33Mhz Zeus driver and will
+ * This is based on the Progressive Peripherals 33MHz Zeus driver and will
* not be correct for other 53c710 boards.
* XXX fix this - nivas
*/
diff --git a/sys/arch/mvme88k/dev/sshreg.h b/sys/arch/mvme88k/dev/sshreg.h
index eee64f1b4aa..232f555a979 100644
--- a/sys/arch/mvme88k/dev/sshreg.h
+++ b/sys/arch/mvme88k/dev/sshreg.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshreg.h,v 1.2 2001/03/07 23:57:47 miod Exp $ */
+/* $OpenBSD: sshreg.h,v 1.3 2003/02/11 19:20:26 mickey Exp $ */
/*
* Copyright (c) 1990 The Regents of the University of California.
@@ -323,10 +323,10 @@ typedef volatile ssh_regmap_t *ssh_regmap_p;
/* DMA control register (dcntl) */
#define SSH_DCNTL_CF_MASK 0xc0 /* Clock frequency dividers:
- 0 --> 37.51..50.00 Mhz, div=2
- 1 --> 25.01..37.50 Mhz, div=1.5
- 2 --> 16.67..25.00 Mhz, div=1
- 3 --> 50.01..66.67 Mhz, div=3
+ 0 --> 37.51..50.00 MHz, div=2
+ 1 --> 25.01..37.50 MHz, div=1.5
+ 2 --> 16.67..25.00 MHz, div=1
+ 3 --> 50.01..66.67 MHz, div=3
*/
#define SSH_DCNTL_EA 0x20 /* Enable ack */
#define SSH_DCNTL_SSM 0x10 /* Single step mode */