Re: [PATCH] tile/pci_gx: Make setup_pcie_rc_delay __init

2018-02-07 Thread Palmer Dabbelt
On Tue, 16 Jan 2018 19:45:05 PST (-0800), douly.f...@cn.fujitsu.com wrote: The early_param() is only called during kernel initialization, So Linux marks the functions of it with __init macro to save memory. But it forgot to mark setup_pcie_rc_delay(). So, Make it __init as well. Cc: Bjorn Helga

[PATCH] tile/pci_gx: Make setup_pcie_rc_delay __init

2018-01-16 Thread Dou Liyang
The early_param() is only called during kernel initialization, So Linux marks the functions of it with __init macro to save memory. But it forgot to mark setup_pcie_rc_delay(). So, Make it __init as well. Cc: Bjorn Helgaas Cc: Palmer Dabbelt Cc: Chris Metcalf Cc: Andrew Morton Signed-off-by: D