From: Randy Dunlap <rdunlap@infradead.org> Date: 2020-08-16 22:25:59
Fix a kernel-doc warning for the pcs_config() function prototype:
../include/linux/phylink.h:406: warning: Excess function parameter 'permit_pause_to_mac' description in 'pcs_config'
Fixes: 7137e18f6f88 ("net: phylink: add struct phylink_pcs")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Russell King <linux@armlinux.org.uk>
Cc: David S. Miller <davem@davemloft.net>
Cc: netdev@vger.kernel.org
---
include/linux/phylink.h | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
From: David Miller <davem@davemloft.net> Date: 2020-08-17 04:14:55
From: Randy Dunlap <rdunlap@infradead.org>
Date: Sun, 16 Aug 2020 15:25:49 -0700
Fix a kernel-doc warning for the pcs_config() function prototype:
../include/linux/phylink.h:406: warning: Excess function parameter 'permit_pause_to_mac' description in 'pcs_config'
Fixes: 7137e18f6f88 ("net: phylink: add struct phylink_pcs")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
There's no definition of this function anywhere. Maybe just remove all of
this?
From: Randy Dunlap <rdunlap@infradead.org> Date: 2020-08-17 05:44:06
On 8/16/20 9:14 PM, David Miller wrote:
From: Randy Dunlap <rdunlap@infradead.org>
Date: Sun, 16 Aug 2020 15:25:49 -0700
quoted
Fix a kernel-doc warning for the pcs_config() function prototype:
../include/linux/phylink.h:406: warning: Excess function parameter 'permit_pause_to_mac' description in 'pcs_config'
Fixes: 7137e18f6f88 ("net: phylink: add struct phylink_pcs")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
There's no definition of this function anywhere. Maybe just remove all of
this?
It's for documentation purposes...
It's a "method" (callback) function.
--
~Randy
From: Russell King - ARM Linux admin <linux@armlinux.org.uk> Date: 2020-08-17 07:27:00
On Sun, Aug 16, 2020 at 09:14:51PM -0700, David Miller wrote:
From: Randy Dunlap <rdunlap@infradead.org>
Date: Sun, 16 Aug 2020 15:25:49 -0700
quoted
Fix a kernel-doc warning for the pcs_config() function prototype:
../include/linux/phylink.h:406: warning: Excess function parameter 'permit_pause_to_mac' description in 'pcs_config'
Fixes: 7137e18f6f88 ("net: phylink: add struct phylink_pcs")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
There's no definition of this function anywhere. Maybe just remove all of
this?
This is kerneldoc documentation for the PCS methods - there's no other
way to document the method parameters than to use "fake" function
prototypes.
--
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 40Mbps down 10Mbps up. Decent connectivity at last!
From: David Miller <davem@davemloft.net> Date: 2020-08-17 18:46:48
From: Randy Dunlap <rdunlap@infradead.org>
Date: Sun, 16 Aug 2020 22:43:54 -0700
On 8/16/20 9:14 PM, David Miller wrote:
quoted
From: Randy Dunlap <rdunlap@infradead.org>
Date: Sun, 16 Aug 2020 15:25:49 -0700
quoted
Fix a kernel-doc warning for the pcs_config() function prototype:
../include/linux/phylink.h:406: warning: Excess function parameter 'permit_pause_to_mac' description in 'pcs_config'
Fixes: 7137e18f6f88 ("net: phylink: add struct phylink_pcs")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
There's no definition of this function anywhere. Maybe just remove all of
this?
It's for documentation purposes...
It's a "method" (callback) function.
I see, that's an unfortunate shortcoming of kerneldoc.
Applied, thanks.