diff options
author | Tom Cosgrove <tom@cvs.openbsd.org> | 2006-10-16 12:30:09 +0000 |
---|---|---|
committer | Tom Cosgrove <tom@cvs.openbsd.org> | 2006-10-16 12:30:09 +0000 |
commit | 70a3ca03ef67ccfcfa072aebe0d4e89b6ed0e469 (patch) | |
tree | 68f3fe3a326512f658644b585c3579adbd61f0bf | |
parent | baf4763c22dd45f33ce2d3ea603cc99d5a8d7064 (diff) |
Fix some "is is"s. ok otto@.
-rw-r--r-- | sys/dev/cardbus/if_rl_cardbus.c | 4 | ||||
-rw-r--r-- | sys/dev/pci/if_re_pci.c | 4 | ||||
-rw-r--r-- | sys/dev/pci/if_sk.c | 4 | ||||
-rw-r--r-- | sys/dev/usb/if_wi_usb.c | 6 |
4 files changed, 9 insertions, 9 deletions
diff --git a/sys/dev/cardbus/if_rl_cardbus.c b/sys/dev/cardbus/if_rl_cardbus.c index 520270f42f7..013ab6c29bd 100644 --- a/sys/dev/cardbus/if_rl_cardbus.c +++ b/sys/dev/cardbus/if_rl_cardbus.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_rl_cardbus.c,v 1.14 2006/10/12 16:35:52 grange Exp $ */ +/* $OpenBSD: if_rl_cardbus.c,v 1.15 2006/10/16 12:30:08 tom Exp $ */ /* $NetBSD: if_rl_cardbus.c,v 1.3.8.3 2001/11/14 19:14:02 nathanw Exp $ */ /* @@ -274,7 +274,7 @@ rl_cardbus_setup(csc) PCI_PRODUCT_DELTA_8139); /* Reset the power state. */ - printf("%s: chip is is in D%d power mode " + printf("%s: chip is in D%d power mode " "-- setting to D0\n", sc->sc_dev.dv_xname, command & RL_PSTATE_MASK); command &= 0xFFFFFFFC; diff --git a/sys/dev/pci/if_re_pci.c b/sys/dev/pci/if_re_pci.c index 2795f1acedc..de2f10d5a35 100644 --- a/sys/dev/pci/if_re_pci.c +++ b/sys/dev/pci/if_re_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_re_pci.c,v 1.16 2006/08/06 01:01:21 brad Exp $ */ +/* $OpenBSD: if_re_pci.c,v 1.17 2006/10/16 12:30:08 tom Exp $ */ /* * Copyright (c) 2005 Peter Valchev <pvalchev@openbsd.org> @@ -146,7 +146,7 @@ re_pci_attach(struct device *parent, struct device *self, void *aux) irq = pci_conf_read(pc, pa->pa_tag, RL_PCI_INTLINE); /* Reset the power state. */ - printf(": chip is is in D%d power mode " + printf(": chip is in D%d power mode " "-- setting to D0", command & RL_PSTATE_MASK); command &= 0xFFFFFFFC; diff --git a/sys/dev/pci/if_sk.c b/sys/dev/pci/if_sk.c index 8dfbbbd5370..f2e23a7ca63 100644 --- a/sys/dev/pci/if_sk.c +++ b/sys/dev/pci/if_sk.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_sk.c,v 1.128 2006/09/27 02:27:04 brad Exp $ */ +/* $OpenBSD: if_sk.c,v 1.129 2006/10/16 12:30:08 tom Exp $ */ /* * Copyright (c) 1997, 1998, 1999, 2000 @@ -2389,7 +2389,7 @@ sk_init_xmac(struct sk_if_softc *sc_if) SK_XM_SETBIT_2(sc_if, XM_TXCMD, XM_TXCMD_AUTOPAD); /* - * Enable the reception of all error frames. This is is + * Enable the reception of all error frames. This is * a necessary evil due to the design of the XMAC. The * XMAC's receive FIFO is only 8K in size, however jumbo * frames can be up to 9000 bytes in length. When bad diff --git a/sys/dev/usb/if_wi_usb.c b/sys/dev/usb/if_wi_usb.c index 169ae7f1dea..f2ec6db1ce7 100644 --- a/sys/dev/usb/if_wi_usb.c +++ b/sys/dev/usb/if_wi_usb.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_wi_usb.c,v 1.30 2006/06/23 06:27:11 miod Exp $ */ +/* $OpenBSD: if_wi_usb.c,v 1.31 2006/10/16 12:30:08 tom Exp $ */ /* * Copyright (c) 2003 Dale Rahn. All rights reserved. @@ -1785,7 +1785,7 @@ wi_watchdog_usb(struct ifnet *ifp) /* * ioctl will always be called from a user context, - * therefore is is possible to sleep in the calling context + * therefore it is possible to sleep in the calling context * acquire the lock and call the real ioctl fucntion directly */ int @@ -1852,7 +1852,7 @@ wi_usb_thread(void *arg) wi_func_io.f_start(&sc->sc_wi.sc_ic.ic_if); /* * tx_unlock is explicitly missing here - * is is done in txeof_frm + * it is done in txeof_frm */ } else if (wi_thread_info->status & WI_INQUIRE) { wi_thread_info->status &= ~WI_INQUIRE; |