]> www.infradead.org Git - users/jedix/linux-maple.git/commit
PM: hibernate: Remove unused stub for saveable_highmem_page()
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Thu, 5 Sep 2024 18:48:48 +0000 (21:48 +0300)
committerRafael J. Wysocki <rafael.j.wysocki@intel.com>
Tue, 10 Sep 2024 18:11:40 +0000 (20:11 +0200)
commitc3565a35d97102fbea69e324086d5e33ee2ab34e
treee977876aede6a1f54b537b3704d4ba4c3f95ca9b
parentc62362e786f30852a13b005c2c6dafcc1537ba06
PM: hibernate: Remove unused stub for saveable_highmem_page()

When saveable_highmem_page() is unused, it prevents kernel builds
with clang, `make W=1` and CONFIG_WERROR=y:

kernel/power/snapshot.c:1369:21: error: unused function 'saveable_highmem_page' [-Werror,-Wunused-function]
 1369 | static inline void *saveable_highmem_page(struct zone *z, unsigned long p)
      |                     ^~~~~~~~~~~~~~~~~~~~~

Fix this by removing unused stub.

See also commit 6863f5643dd7 ("kbuild: allow Clang to find unused static
inline functions for W=1 build").

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://patch.msgid.link/20240905184848.318978-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
kernel/power/snapshot.c