diff mbox

: Fix unused variable compilation warnings in drivers/net/wan/syncppp.c

Message ID ea11fea30810270550g3626456eh84f5c9ed6d79d847@mail.gmail.com
State Accepted, archived
Delegated to: Jeff Garzik
Headers show

Commit Message

Manish Katiyar Oct. 27, 2008, 12:50 p.m. UTC
[resending it to netdev].


---------- Forwarded message ----------
From: Manish Katiyar <mkatiyar@gmail.com>
Date: Mon, Oct 27, 2008 at 6:18 PM
Subject: [PATCH] : Fix unused variable compilation warnings in
drivers/net/wan/syncppp.c
To: kernel-janitors@vger.kernel.org, linux-netdev@vger.kernel.org,
LKML <linux-kernel@vger.kernel.org>
Cc: mkatiyar@gmail.com


Below patch fixes the unused compilation warnings in
drivers/net/wan/syncppp.c when CONFIG_INET is not defined.

Signed-off-by: Manish Katiyar <mkatiyar@gmail.com>
---
 drivers/net/wan/syncppp.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

               if ((in_dev = __in_dev_get_rcu(dev)) != NULL)
               {
--
1.5.4.3


Thanks -
Manish
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/drivers/net/wan/syncppp.c b/drivers/net/wan/syncppp.c
index 327d585..11124f3 100644
--- a/drivers/net/wan/syncppp.c
+++ b/drivers/net/wan/syncppp.c
@@ -756,10 +756,10 @@  static void sppp_cisco_input (struct sppp *sp,
struct sk_buff *skb)
       case CISCO_ADDR_REQ:
               /* Stolen from net/ipv4/devinet.c -- SIOCGIFADDR ioctl */
               {
-               struct in_device *in_dev;
-               struct in_ifaddr *ifa;
               __be32 addr = 0, mask = htonl(~0U); /* FIXME: is the
mask correct? */
 #ifdef CONFIG_INET
+               struct in_device *in_dev;
+               struct in_ifaddr *ifa;
               rcu_read_lock();