summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/pci/if_bnxtreg.h14
-rw-r--r--sys/dev/pci/if_iwxreg.h4
-rw-r--r--sys/dev/pci/igc_i225.c4
-rw-r--r--sys/dev/usb/uaudio.c6
-rw-r--r--sys/kern/kern_exit.c4
-rw-r--r--sys/net/ifq.h4
-rw-r--r--sys/net80211/ieee80211_input.c4
7 files changed, 20 insertions, 20 deletions
diff --git a/sys/dev/pci/if_bnxtreg.h b/sys/dev/pci/if_bnxtreg.h
index f9da2715c13..01d126b3da7 100644
--- a/sys/dev/pci/if_bnxtreg.h
+++ b/sys/dev/pci/if_bnxtreg.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_bnxtreg.h,v 1.4 2022/01/09 05:42:47 jsg Exp $ */
+/* $OpenBSD: if_bnxtreg.h,v 1.5 2022/01/28 07:11:14 guenther Exp $ */
/*-
* BSD LICENSE
*
@@ -157,7 +157,7 @@ struct tx_bd_short {
#define TX_BD_SHORT_FLAGS_PACKET_END UINT32_C(0x40)
/*
* If set to 1, the device will not generate a completion for this
- * transmit packet unless there is an error in it's processing. If this
+ * transmit packet unless there is an error in its processing. If this
* bit is set to 0, then the packet will be completed normally. This bit
* must be valid only on the first BD of a packet.
*/
@@ -249,7 +249,7 @@ struct tx_bd_long {
#define TX_BD_LONG_FLAGS_PACKET_END UINT32_C(0x40)
/*
* If set to 1, the device will not generate a completion for this
- * transmit packet unless there is an error in it's processing. If this
+ * transmit packet unless there is an error in its processing. If this
* bit is set to 0, then the packet will be completed normally. This bit
* must be valid only on the first BD of a packet.
*/
@@ -3109,7 +3109,7 @@ struct push32_doorbell {
#define PUSH32_DOORBELL_FLAGS_PACKET_END UINT32_C(0x40)
/*
* If set to 1, the device will not generate a completion for this
- * transmit packet unless there is an error in it's processing. If this
+ * transmit packet unless there is an error in its processing. If this
* bit is set to 0, then the packet will be completed normally. This bit
* must be valid only on the first BD of a packet.
*/
@@ -5148,7 +5148,7 @@ struct nq_srq_event {
uint16_t reserved16;
uint32_t srq_handle_low;
/*
- * This is the SRQ handle value for the queue that has reached it's
+ * This is the SRQ handle value for the queue that has reached its
* event threshold. This field carries the lower 32b of the value.
*/
uint32_t v;
@@ -5162,7 +5162,7 @@ struct nq_srq_event {
#define NQ_SRQ_EVENT_RESERVED31_SFT 1
uint32_t srq_handle_high;
/*
- * This is the SRQ handle value for the queue that has reached it's
+ * This is the SRQ handle value for the queue that has reached its
* event threshold. This field carries the upper 32b of the value.
*/
} __attribute__((packed));
@@ -5754,7 +5754,7 @@ struct hwrm_ver_get_output {
* Description: This command resets a hardware function (PCIe function) and
* frees any resources used by the function. This command shall be initiated by
* the driver after an FLR has occurred to prepare the function for re-use. This
- * command may also be initiated by a driver prior to doing it's own
+ * command may also be initiated by a driver prior to doing its own
* configuration. This command puts the function into the reset state. In the
* reset state, global and port related features of the chip are not available.
*/
diff --git a/sys/dev/pci/if_iwxreg.h b/sys/dev/pci/if_iwxreg.h
index 058e38dbcbd..a855b36f5ae 100644
--- a/sys/dev/pci/if_iwxreg.h
+++ b/sys/dev/pci/if_iwxreg.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_iwxreg.h,v 1.34 2022/01/09 05:42:52 jsg Exp $ */
+/* $OpenBSD: if_iwxreg.h,v 1.35 2022/01/28 07:11:14 guenther Exp $ */
/*-
* Based on BSD-licensed source modules in the Linux iwlwifi driver,
@@ -2798,7 +2798,7 @@ struct iwx_time_event_notif {
* that event, no other activity will happen in the firmware,
* which is why it can't be too long.
* The length of this event is hard-coded in the firmware: 300TUs.
- * * Another event which can be much longer (it's duration is
+ * * Another event which can be much longer (its duration is
* configurable by the driver) which has a slightly lower
* priority and that can be fragmented allowing other activities
* to run while this event is running.
diff --git a/sys/dev/pci/igc_i225.c b/sys/dev/pci/igc_i225.c
index bc532e2c73b..cf22c7428a7 100644
--- a/sys/dev/pci/igc_i225.c
+++ b/sys/dev/pci/igc_i225.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: igc_i225.c,v 1.1 2021/10/31 14:52:57 patrick Exp $ */
+/* $OpenBSD: igc_i225.c,v 1.2 2022/01/28 07:11:14 guenther Exp $ */
/*-
* Copyright 2021 Intel Corp
* Copyright 2021 Rubicon Communications, LLC (Netgate)
@@ -820,7 +820,7 @@ igc_update_flash_i225(struct igc_hw *hw)
* therefore, SW is in charge of shadow RAM dump.
* Check which sector is valid. if sector 0 is valid,
* base address remains 0x0. otherwise, sector 1 is
- * valid and it's base address is 0x1000
+ * valid and its base address is 0x1000
*/
if (IGC_READ_REG(hw, IGC_EECD) & IGC_EECD_SEC1VAL_I225)
base_address = 0x1000;
diff --git a/sys/dev/usb/uaudio.c b/sys/dev/usb/uaudio.c
index aeeb4c6d609..025892ddf04 100644
--- a/sys/dev/usb/uaudio.c
+++ b/sys/dev/usb/uaudio.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: uaudio.c,v 1.164 2022/01/09 05:43:00 jsg Exp $ */
+/* $OpenBSD: uaudio.c,v 1.165 2022/01/28 07:11:14 guenther Exp $ */
/*
* Copyright (c) 2018 Alexandre Ratchov <alex@caoua.org>
*
@@ -2011,7 +2011,7 @@ uaudio_process_header(struct uaudio_softc *sc, struct uaudio_blob *p)
/*
* Process AC interrupt endpoint descriptor, this is mainly to skip
- * the descriptor as we use neither of it's properties. Our mixer
+ * the descriptor as we use neither of its properties. Our mixer
* interface doesn't support unsolicitated state changes, so we've no
* use of it yet.
*/
@@ -2298,7 +2298,7 @@ uaudio_process_ac(struct uaudio_softc *sc, struct uaudio_blob *p, int ifnum)
*
* type sync descr
* -------------------------------------------------------
- * async: Yes the device uses it's own clock but
+ * async: Yes the device uses its own clock but
* sends feedback on a (input) sync endpoint
* for the host to adjust next packet size
*
diff --git a/sys/kern/kern_exit.c b/sys/kern/kern_exit.c
index 43f1f315fa9..632792c0240 100644
--- a/sys/kern/kern_exit.c
+++ b/sys/kern/kern_exit.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kern_exit.c,v 1.200 2021/10/24 00:02:24 jsg Exp $ */
+/* $OpenBSD: kern_exit.c,v 1.201 2022/01/28 07:11:15 guenther Exp $ */
/* $NetBSD: kern_exit.c,v 1.39 1996/04/22 01:38:25 christos Exp $ */
/*
@@ -584,7 +584,7 @@ loop:
}
/*
* Look in the orphans list too, to allow the parent to
- * collect it's child exit status even if child is being
+ * collect its child's exit status even if child is being
* debugged.
*
* Debugger detaches from the parent upon successful
diff --git a/sys/net/ifq.h b/sys/net/ifq.h
index 2d34d251a44..9764c9c5cc1 100644
--- a/sys/net/ifq.h
+++ b/sys/net/ifq.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: ifq.h,v 1.33 2021/03/10 10:21:48 jsg Exp $ */
+/* $OpenBSD: ifq.h,v 1.34 2022/01/28 07:11:15 guenther Exp $ */
/*
* Copyright (c) 2015 David Gwynne <dlg@openbsd.org>
@@ -253,7 +253,7 @@ struct ifiqueue {
*
* == Attach
*
- * A driver advertises it's ability to run its start routine without
+ * A driver advertises its ability to run its start routine without
* the kernel lock by setting the IFXF_MPSAFE flag in ifp->if_xflags
* before calling if_attach(). Advertising an MPSAFE start routine
* also implies that the driver understands that a network card can
diff --git a/sys/net80211/ieee80211_input.c b/sys/net80211/ieee80211_input.c
index fcc847845b2..1483da3b25a 100644
--- a/sys/net80211/ieee80211_input.c
+++ b/sys/net80211/ieee80211_input.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ieee80211_input.c,v 1.243 2022/01/21 15:51:03 stsp Exp $ */
+/* $OpenBSD: ieee80211_input.c,v 1.244 2022/01/28 07:11:15 guenther Exp $ */
/*-
* Copyright (c) 2001 Atsushi Onoe
@@ -1997,7 +1997,7 @@ ieee80211_recv_probe_resp(struct ieee80211com *ic, struct mbuf *m,
#ifndef IEEE80211_STA_ONLY
if (ic->ic_opmode == IEEE80211_M_IBSS && is_new && isprobe) {
/*
- * Fake an association so the driver can setup it's
+ * Fake an association so the driver can setup its
* private state. The rate set has been setup above;
* there is no handshake as in ap/station operation.
*/