diff options
Diffstat (limited to 'sys/dev/pci')
-rw-r--r-- | sys/dev/pci/if_bnxtreg.h | 14 | ||||
-rw-r--r-- | sys/dev/pci/if_iwxreg.h | 4 | ||||
-rw-r--r-- | sys/dev/pci/igc_i225.c | 4 |
3 files changed, 11 insertions, 11 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; |