Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S261613AbVAGVOv (ORCPT ); Fri, 7 Jan 2005 16:14:51 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S261617AbVAGVOj (ORCPT ); Fri, 7 Jan 2005 16:14:39 -0500 Received: from amsfep12-int.chello.nl ([213.46.243.17]:56925 "EHLO amsfep12-int.chello.nl") by vger.kernel.org with ESMTP id S261613AbVAGVLF (ORCPT ); Fri, 7 Jan 2005 16:11:05 -0500 Date: Fri, 7 Jan 2005 22:11:04 +0100 Message-Id: <200501072111.j07LB4EN011223@anakin.of.borg> From: Geert Uytterhoeven To: Marcelo Tosatti Cc: Linux Kernel Development , linux-net@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH 167] Kill unused variables in the net code Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1291 Lines: 35 2.4.28-rc2 introduced a warning in the net code on non-SMP: net/core/neighbour.c:1809: warning: unused variable `tbl' The following patch fixes this. Signed-off-by: Geert Uytterhoeven --- linux-2.4.29-rc1/include/linux/spinlock.h 2004-04-27 17:22:10.000000000 +0200 +++ linux-m68k-2.4.29-rc1/include/linux/spinlock.h 2005-01-07 21:51:28.000000000 +0100 @@ -147,7 +147,7 @@ #define rwlock_init(lock) do { } while(0) #define read_lock(lock) (void)(lock) /* Not "unused variable". */ -#define read_unlock(lock) do { } while(0) +#define read_unlock(lock) (void)(lock) /* Not "unused variable". */ #define write_lock(lock) (void)(lock) /* Not "unused variable". */ #define write_unlock(lock) do { } while(0) Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds - 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/