From: Alok Tiwari Date: Fri, 5 Sep 2025 16:33:49 +0000 (-0700) Subject: ixgbe: fix typo in function comment for ixgbe_get_num_per_func() X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=abcf9f662bc7ec72b3591d785eccd7dd8c239365;p=users%2Fhch%2Fmisc.git ixgbe: fix typo in function comment for ixgbe_get_num_per_func() Correct a typo in the comment where "PH" was used instead of "PF". The function returns the number of resources per PF or 0 if no PFs are available. Signed-off-by: Alok Tiwari Signed-off-by: Qiang Liu Reviewed-by: Aleksandr Loktionov Reviewed-by: Aleksandr Loktionov Link: https://patch.msgid.link/20250905163353.3031910-1-alok.a.tiwari@oracle.com Signed-off-by: Jakub Kicinski --- diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_e610.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_e610.c index c5ca7b392b0d..7181efd0454d 100644 --- a/drivers/net/ethernet/intel/ixgbe/ixgbe_e610.c +++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_e610.c @@ -774,7 +774,7 @@ static void ixgbe_parse_vf_func_caps(struct ixgbe_hw *hw, * from parsing capabilities and use this to calculate the number of resources * per PF based on the max value passed in. * - * Return: the number of resources per PF or 0, if no PH are available. + * Return: the number of resources per PF or 0, if no PFs are available. */ static u32 ixgbe_get_num_per_func(struct ixgbe_hw *hw, u32 max) {