mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix this so LINT compiles. There is no way this could have worked if
tested with LINT. I've put back netatm/kern_include.h and maked it with a fixme!, otherwise NETISR_ATM isn't defined as ATM_KERNEL isn't defined. Defining that exposes a whole bunch of other dependencies.. :-(
This commit is contained in:
parent
e27c1addaa
commit
ff76332c49
1 changed files with 5 additions and 5 deletions
|
|
@ -38,7 +38,7 @@
|
|||
#include <net/intrq.h>
|
||||
|
||||
#ifdef __i386__
|
||||
#include <netatm/atm_if.h>
|
||||
#include <netatm/kern_include.h> /* XXX overkill, fixme! */
|
||||
#endif
|
||||
|
||||
/*
|
||||
|
|
@ -58,10 +58,10 @@ const int ipxintrq_present;
|
|||
const int natmintrq_present;
|
||||
const int nsintrq_present;
|
||||
|
||||
struct ifqueue at1intrq;
|
||||
struct ifqueue at2intrq;
|
||||
struct ifqueue atintrq1;
|
||||
struct ifqueue atintrq2;
|
||||
#ifdef NETISR_ATM
|
||||
struct ifqueue atmintrq;
|
||||
struct ifqueue atm_intrq;
|
||||
#endif
|
||||
struct ifqueue ipintrq;
|
||||
struct ifqueue ip6intrq;
|
||||
|
|
@ -83,7 +83,7 @@ static const struct {
|
|||
{ AF_INET6, &ip6intrq, &ip6intrq_present, NETISR_IPV6 },
|
||||
{ AF_IPX, &ipxintrq, &ipxintrq_present, NETISR_IPX },
|
||||
{ AF_NATM, &natmintrq, &natmintrq_present, NETISR_NATM },
|
||||
{ AF_APPLETALK, &at2intrq, &atintrq2_present, NETISR_ATALK },
|
||||
{ AF_APPLETALK, &atintrq2, &atintrq2_present, NETISR_ATALK },
|
||||
{ AF_NS, &nsintrq, &nsintrq_present, NETISR_NS }
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue