diff options
author | Chris Packham <chris.packham@alliedtelesis.co.nz> | 2019-07-24 11:35:01 +1200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-07-25 11:53:37 -0700 |
commit | 83fbae60fd3885c6e8da5863582d0317731c5528 (patch) | |
tree | 94ee35c08fcd650c63c980d4e1342953b0de700d /drivers/net | |
parent | 3008e06fdf0973770370f97d5f1fba3701d8281d (diff) | |
download | linux-83fbae60fd3885c6e8da5863582d0317731c5528.tar.gz linux-83fbae60fd3885c6e8da5863582d0317731c5528.tar.bz2 linux-83fbae60fd3885c6e8da5863582d0317731c5528.zip |
fsl/fman: Remove comment referring to non-existent function
fm_set_max_frm() existed in the Freescale SDK as a callback for an
early_param. When this code was ported to the upstream kernel the
early_param was converted to a module_param making the reference to the
function incorrect. The rest of the comment already does a good job of
explaining the parameter so removing the reference to the non-existent
function seems like the best thing to do.
Signed-off-by: Chris Packham <chris.packham@alliedtelesis.co.nz>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/ethernet/freescale/fman/fman.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/net/ethernet/freescale/fman/fman.c b/drivers/net/ethernet/freescale/fman/fman.c index e80fedb27cee..210749bf1eac 100644 --- a/drivers/net/ethernet/freescale/fman/fman.c +++ b/drivers/net/ethernet/freescale/fman/fman.c @@ -2439,9 +2439,6 @@ MODULE_PARM_DESC(fsl_fm_rx_extra_headroom, "Extra headroom for Rx buffers"); * buffers when not using jumbo frames. * Must be large enough to accommodate the network MTU, but small enough * to avoid wasting skb memory. - * - * Could be overridden once, at boot-time, via the - * fm_set_max_frm() callback. */ static int fsl_fm_max_frm = FSL_FM_MAX_FRAME_SIZE; module_param(fsl_fm_max_frm, int, 0); |