summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorlukem <lukem@NetBSD.org>2001-04-30 03:49:12 +0000
committerlukem <lukem@NetBSD.org>2001-04-30 03:49:12 +0000
commit5de219fbefb56c8f92cd6fb49996967a705a94e0 (patch)
treefbd0b05a9ae963f3d1ac20a582b1f93f57bcce39 /sys/dev
parentc83fa97ec87ac90157221dc7ea65a1004b45170c (diff)
delint
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/ic/smc93cx6.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/ic/smc93cx6.c b/sys/dev/ic/smc93cx6.c
index 05e6ef03782..1bccf40f1ed 100644
--- a/sys/dev/ic/smc93cx6.c
+++ b/sys/dev/ic/smc93cx6.c
@@ -1,4 +1,4 @@
-/* $NetBSD: smc93cx6.c,v 1.6 2000/03/15 02:08:30 fvdl Exp $ */
+/* $NetBSD: smc93cx6.c,v 1.7 2001/04/30 03:49:12 lukem Exp $ */
/*
* Interface for the 93C66/56/46/26/06 serial eeprom parts.
@@ -86,8 +86,8 @@ static struct seeprom_cmd {
* Wait for the SEERDY to go high; about 800 ns.
*/
#define CLOCK_PULSE(sd, rdy) { \
- int i = 1000; \
- while ((SEEPROM_STATUS_INB(sd) & rdy) == 0 && i-- > 0) { \
+ int cpi = 1000; \
+ while ((SEEPROM_STATUS_INB(sd) & rdy) == 0 && cpi-- > 0) { \
; /* Do nothing */ \
} \
(void)SEEPROM_INB(sd); /* Clear clock */ \