Skip to content

Commit fa4709d

Browse files
committed
net: qed: fix typos
JIRA: https://issues.redhat.com/browse/RHEL-72644 There are some typos in comments/messages: - Valiate -> Validate - acceptible -> acceptable - acces -> access - relased -> released Fix them via codespell. Signed-off-by: Andrew Kreimer <algonell@gmail.com> Reviewed-by: Simon Horman <horms@kernel.org> Link: https://patch.msgid.link/20250203175419.4146-1-algonell@gmail.com Signed-off-by: Jakub Kicinski <kuba@kernel.org> (cherry picked from commit 185b1d5) Signed-off-by: John Meneghini <jmeneghi@redhat.com>
1 parent 238ebdc commit fa4709d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

drivers/net/ethernet/qlogic/qed/qed_sriov.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3033,7 +3033,7 @@ static void qed_iov_vf_mbx_vport_update(struct qed_hwfn *p_hwfn,
30333033
u16 length;
30343034
int rc;
30353035

3036-
/* Valiate PF can send such a request */
3036+
/* Validate PF can send such a request */
30373037
if (!vf->vport_instance) {
30383038
DP_VERBOSE(p_hwfn,
30393039
QED_MSG_IOV,
@@ -3312,7 +3312,7 @@ static void qed_iov_vf_mbx_ucast_filter(struct qed_hwfn *p_hwfn,
33123312
goto out;
33133313
}
33143314

3315-
/* Determine if the unicast filtering is acceptible by PF */
3315+
/* Determine if the unicast filtering is acceptable by PF */
33163316
if ((p_bulletin->valid_bitmap & BIT(VLAN_ADDR_FORCED)) &&
33173317
(params.type == QED_FILTER_VLAN ||
33183318
params.type == QED_FILTER_MAC_VLAN)) {
@@ -3729,7 +3729,7 @@ qed_iov_execute_vf_flr_cleanup(struct qed_hwfn *p_hwfn,
37293729

37303730
rc = qed_iov_enable_vf_access(p_hwfn, p_ptt, p_vf);
37313731
if (rc) {
3732-
DP_ERR(p_hwfn, "Failed to re-enable VF[%d] acces\n",
3732+
DP_ERR(p_hwfn, "Failed to re-enable VF[%d] access\n",
37333733
vfid);
37343734
return rc;
37353735
}
@@ -4480,7 +4480,7 @@ int qed_sriov_disable(struct qed_dev *cdev, bool pci_enabled)
44804480
struct qed_ptt *ptt = qed_ptt_acquire(hwfn);
44814481

44824482
/* Failure to acquire the ptt in 100g creates an odd error
4483-
* where the first engine has already relased IOV.
4483+
* where the first engine has already released IOV.
44844484
*/
44854485
if (!ptt) {
44864486
DP_ERR(hwfn, "Failed to acquire ptt\n");

0 commit comments

Comments
 (0)