spi: rockchip-flexbus-spi: Fix build warning for !PM_SLEEP

drivers/spi/spi-rockchip-flexbus-spi.c:367:12: error: 'rk_flexbus_spi_resume' defined but not used [-Werror=unused-function]

Change-Id: I1a8cf00bc51260501847f9797001bf4e10243240
Signed-off-by: Tao Huang <huangtao@rock-chips.com>
This commit is contained in:
Tao Huang 2024-10-16 19:31:14 +08:00
parent bf1992513c
commit df0794fc58

View file

@ -376,9 +376,7 @@ static int rk_flexbus_spi_resume(struct device *dev)
return 0;
}
static const struct dev_pm_ops rk_flexbus_spi_pm_ops = {
SET_SYSTEM_SLEEP_PM_OPS(NULL, rk_flexbus_spi_resume)
};
static DEFINE_SIMPLE_DEV_PM_OPS(rk_flexbus_spi_pm_ops, NULL, rk_flexbus_spi_resume);
static const struct of_device_id rk_flexbus_spi_dt_ids[] = {
{ .compatible = "rockchip,flexbus-spi"},
@ -390,7 +388,7 @@ static struct platform_driver rk_flexbus_spi_driver = {
.driver = {
.name = "rockchip-flexbus-spi",
.of_match_table = rk_flexbus_spi_dt_ids,
.pm = &rk_flexbus_spi_pm_ops,
.pm = pm_sleep_ptr(&rk_flexbus_spi_pm_ops),
},
.probe = rk_flexbus_spi_probe,
};