]> www.infradead.org Git - users/jedix/linux-maple.git/commit
net: fec: Switch to RUNTIME/SYSTEM_SLEEP_PM_OPS()
authorFabio Estevam <festevam@denx.de>
Tue, 6 Aug 2024 02:16:28 +0000 (23:16 -0300)
committerJakub Kicinski <kuba@kernel.org>
Thu, 8 Aug 2024 03:13:32 +0000 (20:13 -0700)
commitde6c7b9ada33046481a094be073b85a25dcffcaf
treed291df1aa16c16e79792fcadf00831a29e13c7bf
parent3f49edf44bd660d393b68a2b1d77a0841fb7f21d
net: fec: Switch to RUNTIME/SYSTEM_SLEEP_PM_OPS()

Replace SET_RUNTIME_PM_OPS()/SET SYSTEM_SLEEP_PM_OPS() with their modern
RUNTIME_PM_OPS() and SYSTEM_SLEEP_PM_OPS() alternatives.

The combined usage of pm_ptr() and RUNTIME_PM_OPS/SYSTEM_SLEEP_PM_OPS()
allows the compiler to evaluate if the runtime suspend/resume() functions
are used at build time or are simply dead code.

This allows removing the __maybe_unused notation from the runtime
suspend/resume() functions.

Signed-off-by: Fabio Estevam <festevam@denx.de>
Reviewed-by: Peng Fan <peng.fan@nxp.com>
Link: https://patch.msgid.link/20240806021628.2524089-1-festevam@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/freescale/fec_main.c