summaryrefslogtreecommitdiffstats
path: root/sys/netatm/atm_if.h
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2000-10-12 08:14:20 +0000
committerphk <phk@FreeBSD.org>2000-10-12 08:14:20 +0000
commitfe59073f8dcfe61d8b048e7e4751131e39b353e6 (patch)
treeac1b058a0e6fbd34f751b3b03656faa56b5b2089 /sys/netatm/atm_if.h
parent26ce601f70d9658c4c6e5326220f41872924930e (diff)
downloadFreeBSD-src-fe59073f8dcfe61d8b048e7e4751131e39b353e6.zip
FreeBSD-src-fe59073f8dcfe61d8b048e7e4751131e39b353e6.tar.gz
Remove the #include kitchensink <netatm/kern_include.h> and add
the #includes to the respective source files. Also un-nest includes in <dev/hfa/fore_include.h> I have run src/tools/tools/kerninclude to remove 1239 clearly unneeded #includes reducing the total from 3524 includes to 2285.
Diffstat (limited to 'sys/netatm/atm_if.h')
-rw-r--r--sys/netatm/atm_if.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/sys/netatm/atm_if.h b/sys/netatm/atm_if.h
index e7370c6..fada781 100644
--- a/sys/netatm/atm_if.h
+++ b/sys/netatm/atm_if.h
@@ -317,48 +317,21 @@ struct atm_ncm {
/*
* atm_dev_compress() buffer allocation sizes
*/
-#if defined(BSD)
#define ATM_DEV_CMPR_LG MCLBYTES /* Size of large buffers */
#define ATM_DEV_CMPR_SM MLEN /* Size of small buffers */
-#endif
/*
* Macros to manage DMA addresses
*/
-#if defined(sun4c)
-#define DMA_INIT()
-#define DMA_GET_ADDR(addr,len,align,flags) ((void *)(addr))
-#define DMA_FREE_ADDR(addr,daddr,len,flags)
-#define DMA_RELEASE()
-
-#elif defined(sun4m)
-#define DMA_INIT()
-#define DMA_GET_ADDR(addr,len,align,flags) \
- (void *)atm_dma_map((addr),(len),(flags))
-#define DMA_FREE_ADDR(addr,daddr,len,flags) \
- (void)atm_dma_free((daddr),(flags))
-#define DMA_RELEASE()
-
-#elif defined(BSD) && defined(__i386__)
#define DMA_INIT()
#define DMA_GET_ADDR(addr,len,align,flags) ((void *)vtophys(addr))
#define DMA_FREE_ADDR(addr,daddr,len,flags)
#define DMA_RELEASE()
-#else
- #error - Must define hardware-specific requirements here
-#endif
-
-
/*
* Macros to lock out device interrupts
*/
-#if defined(sun)
-#define DEVICE_LOCK(u) ((u)->cu_savepri = splr((u)->cu_intrpri))
-#endif
-#if defined(__FreeBSD__)
#define DEVICE_LOCK(u) ((u)->cu_savepri = splimp())
-#endif
#define DEVICE_UNLOCK(u) ((void) splx((u)->cu_savepri))
@@ -377,10 +350,6 @@ typedef void (atm_intr_t) __P((void *, KBuffer *)); /* Callback function type */
typedef atm_intr_t *atm_intr_func_t; /* Pointer to callback function */
#define SCHED_ATM schednetisr(NETISR_ATM)
-#ifdef sgi
-extern int atm_intr_index;
-#define SCHED_ATM schednetisr(atm_intr_index)
-#endif
#endif /* _KERNEL */
#endif /* _NETATM_ATM_IF_H */
OpenPOWER on IntegriCloud