Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1644961

[PATCH] zlib: Mark get_unaligned16() as __maybe_unused

From Matthias Kaehlcke <mka@chromium.org>
Newsgroups linux.kernel
Subject [PATCH] zlib: Mark get_unaligned16() as __maybe_unused
Date 2017-05-19 01:50 +0200
Message-ID <tIDl7-1Sa-3@gated-at.bofh.it> (permalink)
Organization linux.* mail to news gateway

Show all headers | View raw


The function is not used with all configurations. Adding the attribute
fixes the following warning when building with clang and
CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y:

lib/zlib_inflate/inffast.c:31:1: error: unused function 'get_unaligned16'
    [-Werror,-Wunused-function]
get_unaligned16(const unsigned short *p)

Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
---
 lib/zlib_inflate/inffast.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/zlib_inflate/inffast.c b/lib/zlib_inflate/inffast.c
index 2c13ecc5bb2c..05a6d9626d9f 100644
--- a/lib/zlib_inflate/inffast.c
+++ b/lib/zlib_inflate/inffast.c
@@ -27,7 +27,7 @@ union uu {
 };
 
 /* Endian independed version */
-static inline unsigned short
+static inline unsigned short __maybe_unused
 get_unaligned16(const unsigned short *p)
 {
 	union uu  mm;
-- 
2.13.0.303.g4ebf302169-goog

Back to linux.kernel | Previous | NextNext in thread | Find similar | Unroll thread


Thread

[PATCH] zlib: Mark get_unaligned16() as __maybe_unused Matthias Kaehlcke <mka@chromium.org> - 2017-05-19 01:50 +0200
  Re: [PATCH] zlib: Mark get_unaligned16() as __maybe_unused kbuild test robot <lkp@intel.com> - 2017-05-19 05:30 +0200

csiph-web