]> git.baikalelectronics.ru Git - kernel.git/commit
spi: Fix tegra20 build with CONFIG_PM=n
authorLinus Torvalds <torvalds@linux-foundation.org>
Sat, 18 Sep 2021 17:05:06 +0000 (10:05 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sat, 18 Sep 2021 17:05:06 +0000 (10:05 -0700)
commit7edd4c6c1f96e45b5973367f4b4b3c1a12b9dd62
tree348829d15ec42adf596687d00edf408231e94f5e
parentc67bec327ce6b4a0fb157bc53c2f9ac3bc0b18be
spi: Fix tegra20 build with CONFIG_PM=n

Without CONFIG_PM enabled, the SET_RUNTIME_PM_OPS() macro ends up being
empty, and the only use of tegra_slink_runtime_{resume,suspend} goes
away, resulting in

  drivers/spi/spi-tegra20-slink.c:1200:12: error: ‘tegra_slink_runtime_resume’ defined but not used [-Werror=unused-function]
   1200 | static int tegra_slink_runtime_resume(struct device *dev)
        |            ^~~~~~~~~~~~~~~~~~~~~~~~~~
  drivers/spi/spi-tegra20-slink.c:1188:12: error: ‘tegra_slink_runtime_suspend’ defined but not used [-Werror=unused-function]
   1188 | static int tegra_slink_runtime_suspend(struct device *dev)
        |            ^~~~~~~~~~~~~~~~~~~~~~~~~~~

mark the functions __maybe_unused to make the build happy.

This hits the alpha allmodconfig build (and others).

Reported-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
drivers/spi/spi-tegra20-slink.c