[PATCH][ATM] prevent compiler warning when compiling w/o bridging

chas williams (chas@locutus.cmf.nrl.navy.mil)
Sun, 23 Feb 2003 20:28:42 -0500


Index: linux/net/atm/lec.c
===================================================================
RCS file: /home/chas/CVSROOT/linux/net/atm/lec.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -b -w -r1.2 -r1.3
--- linux/net/atm/lec.c 22 Feb 2003 17:35:45 -0000 1.2
+++ linux/net/atm/lec.c 22 Feb 2003 17:38:23 -0000 1.3
@@ -36,6 +36,10 @@
#include <linux/if_bridge.h>
#include "../bridge/br_private.h"
static unsigned char bridge_ula_lec[] = {0x01, 0x80, 0xc2, 0x00, 0x00};
+
+extern struct net_bridge_fdb_entry *(*br_fdb_get_hook)(struct net_bridge *br,
+ unsigned char *addr);
+extern void (*br_fdb_put_hook)(struct net_bridge_fdb_entry *ent);
#endif

/* Modular too */
@@ -51,10 +55,6 @@
#else
#define DPRINTK(format,args...)
#endif
-
-extern struct net_bridge_fdb_entry *(*br_fdb_get_hook)(struct net_bridge *br,
- unsigned char *addr);
-extern void (*br_fdb_put_hook)(struct net_bridge_fdb_entry *ent);

static spinlock_t lec_arp_spinlock = SPIN_LOCK_UNLOCKED;

-
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/