summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2013-01-15 05:11:48 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2013-01-15 05:11:48 +0000
commit791ceaf18dae6a913113d6a4d765ff0a1c6222ce (patch)
tree4c5d9b724a8ea8974c8061e42981e26237df5d06
parentd15d12af9997df9d8ace3fc749db938198b0df90 (diff)
Fix typos in comments and change the syntactic sugar of a function to
reduce the diff between Fx and Ox. OK gcc
-rw-r--r--sys/dev/pci/if_bge.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/dev/pci/if_bge.c b/sys/dev/pci/if_bge.c
index 20730f26166..ba3a13d49a6 100644
--- a/sys/dev/pci/if_bge.c
+++ b/sys/dev/pci/if_bge.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_bge.c,v 1.314 2013/01/10 01:17:00 dlg Exp $ */
+/* $OpenBSD: if_bge.c,v 1.315 2013/01/15 05:11:47 claudio Exp $ */
/*
* Copyright (c) 2001 Wind River Systems
@@ -45,9 +45,9 @@
/*
* The Broadcom BCM5700 is based on technology originally developed by
* Alteon Networks as part of the Tigon I and Tigon II gigabit ethernet
- * MAC chips. The BCM5700, sometimes refered to as the Tigon III, has
+ * MAC chips. The BCM5700, sometimes referred to as the Tigon III, has
* two on-board MIPS R4000 CPUs and can have as much as 16MB of external
- * SSRAM. The BCM5700 supports TCP, UDP and IP checksum offload, Jumbo
+ * SSRAM. The BCM5700 supports TCP, UDP and IP checksum offload, jumbo
* frames, highly configurable RX filtering, and 16 RX and TX queues
* (which, along with RX filter rules, can be used for QOS applications).
* Other features, such as TCP segmentation, may be available as part
@@ -567,17 +567,17 @@ bge_eeprom_getbyte(struct bge_softc *sc, int addr, u_int8_t *dest)
int
bge_read_eeprom(struct bge_softc *sc, caddr_t dest, int off, int cnt)
{
- int err = 0, i;
+ int i, error = 0;
u_int8_t byte = 0;
for (i = 0; i < cnt; i++) {
- err = bge_eeprom_getbyte(sc, off + i, &byte);
- if (err)
+ error = bge_eeprom_getbyte(sc, off + i, &byte);
+ if (error)
break;
*(dest + i) = byte;
}
- return (err ? 1 : 0);
+ return (error ? 1 : 0);
}
int