From mboxrd@z Thu Jan 1 00:00:00 1970 From: Emil Goode Subject: [PATCH v2] batman-adv: Remove unused variable Date: Thu, 7 Feb 2013 00:32:37 +0100 Message-ID: <1360193557-27554-1-git-send-email-emilgoode@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: QUOTED-PRINTABLE Cc: sasha.levin@oracle.com, b.a.t.m.a.n@lists.open-mesh.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, kernel-janitors@vger.kernel.org, Emil Goode To: akpm@linux-foundation.org, lindner_marek@yahoo.de, siwu@hrz.tu-chemnitz.de, ordex@autistici.org, davem@davemloft.net Return-path: Sender: linux-kernel-owner@vger.kernel.org List-Id: netdev.vger.kernel.org The below commit removed one node parameter from iterators. ed242d01bbe22ea0877472db49b2752d866c921c (hlist: drop the node parameter from iterators) This patch removes a hlist_node struct that is no longer used. Sparse gives a warning: net/batman-adv/originator.c:411:21: warning: unused variable =E2=80=98node_tmp=E2=80=99 [-Wunused-variable] Signed-off-by: Emil Goode --- This patch applies to the linux-next tree. v2: Added complete hash and message of dependant commit. net/batman-adv/originator.c | 1 - 1 file changed, 1 deletion(-) diff --git a/net/batman-adv/originator.c b/net/batman-adv/originator.c index 43d0f89..96fb80b 100644 --- a/net/batman-adv/originator.c +++ b/net/batman-adv/originator.c @@ -408,7 +408,6 @@ int batadv_orig_seq_print_text(struct seq_file *seq= , void *offset) struct net_device *net_dev =3D (struct net_device *)seq->private; struct batadv_priv *bat_priv =3D netdev_priv(net_dev); struct batadv_hashtable *hash =3D bat_priv->orig_hash; - struct hlist_node *node_tmp; struct hlist_head *head; struct batadv_hard_iface *primary_if; struct batadv_orig_node *orig_node; --=20 1.7.10.4