Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754904Ab2FIIPm (ORCPT ); Sat, 9 Jun 2012 04:15:42 -0400 Received: from mail-yw0-f46.google.com ([209.85.213.46]:40424 "EHLO mail-yw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754207Ab2FIIO3 (ORCPT ); Sat, 9 Jun 2012 04:14:29 -0400 From: Ezequiel Garcia To: linux-kernel@vger.kernel.org Cc: linux-arch@vger.kernel.org, Ezequiel Garcia , Hirokazu Takata , , Subject: =?UTF-8?q?=5BPATCH=205/6=5D=20m32r=3A=20fix=20compiler=20warning=20by=20properly=20inlining=20flat=5Fset=5Fpersistent=28=29?= Date: Sat, 9 Jun 2012 05:13:30 -0300 Message-Id: <1339229611-2326-5-git-send-email-elezegarcia@gmail.com> X-Mailer: git-send-email 1.7.3.4 In-Reply-To: <1339229611-2326-1-git-send-email-elezegarcia@gmail.com> References: <1339229611-2326-1-git-send-email-elezegarcia@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1544 Lines: 45 This patch removes the following warning: fs/binfmt_flat.c:752: warning: unused variable ‘persistent’ There is neither change in functionality, nor extra code generated. Cc: Hirokazu Takata Cc: Cc: Signed-off-by: Ezequiel Garcia --- arch/m32r/include/asm/flat.h | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/arch/m32r/include/asm/flat.h b/arch/m32r/include/asm/flat.h index 5d711c4..2caf5b8 100644 --- a/arch/m32r/include/asm/flat.h +++ b/arch/m32r/include/asm/flat.h @@ -14,7 +14,6 @@ #define flat_argvp_envp_on_stack() 0 #define flat_old_ram_flag(flags) (flags) -#define flat_set_persistent(relval, p) 0 #define flat_reloc_valid(reloc, size) \ (((reloc) - textlen_for_m32r_lo16_data) <= (size)) #define flat_get_addr_from_rp(rp, relval, flags, persistent) \ @@ -23,6 +22,12 @@ #define flat_put_addr_at_rp(rp, addr, relval) \ m32r_flat_put_addr_at_rp(rp, addr, relval) +static inline int flat_set_persistent(unsigned long relval, + unsigned long *persistent) +{ + return 0; +} + /* Convert a relocation entry into an address. */ static inline unsigned long flat_get_relocate_addr (unsigned long relval) -- 1.7.3.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/