]> www.infradead.org Git - users/dwmw2/linux.git/commit
x86/platform/olpc: Remove unused variable 'len' in olpc_dt_compatible_match()
authorZeng Heng <zengheng4@huawei.com>
Fri, 25 Oct 2024 07:42:03 +0000 (15:42 +0800)
committerIngo Molnar <mingo@kernel.org>
Thu, 6 Mar 2025 10:14:26 +0000 (11:14 +0100)
commitef69de53c46a4b526442f6bc5970fc14f7a0bb32
tree306be4aace00b1608d1e48ccc9cececd30ff79a1
parent000894d8fc0d787b52a46339f297e20c024a6ca5
x86/platform/olpc: Remove unused variable 'len' in olpc_dt_compatible_match()

The following build warning highlights some unused code:

  arch/x86/platform/olpc/olpc_dt.c: In function ‘olpc_dt_compatible_match’:
  arch/x86/platform/olpc/olpc_dt.c:222:12: warning: variable ‘len’ set but not used [-Wunused-but-set-variable]

The compiler is right, the local variable 'len' is set but never used,
so remove it.

Fixes: a7a9bacb9a32 ("x86/platform/olpc: Use a correct version when making up a battery node")
Signed-off-by: Zeng Heng <zengheng4@huawei.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Link: https://lore.kernel.org/r/20241025074203.1921344-1-zengheng4@huawei.com
arch/x86/platform/olpc/olpc_dt.c