aboutsummaryrefslogtreecommitdiff
path: root/sys/netatm/sigpvc
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2000-10-12 07:42:34 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2000-10-12 07:42:34 +0000
commit67467625e25c699bf06ba4193999e8ebd5bd3e95 (patch)
tree2b6fa5568c7b09e143eb085d13fffdf9f44ec201 /sys/netatm/sigpvc
parent6f1214d91833ea199c7b4bc7a12e2bd944f6e90b (diff)
More HARP polishina:
unifdef -UFORE_SBUS -DFORE_PCI s/ATM_KERNEL/_KERNER/g
Notes
Notes: svn path=/head/; revision=67002
Diffstat (limited to 'sys/netatm/sigpvc')
-rw-r--r--sys/netatm/sigpvc/sigpvc_var.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/netatm/sigpvc/sigpvc_var.h b/sys/netatm/sigpvc/sigpvc_var.h
index 2cb96bcda2f0..3488a0f303ed 100644
--- a/sys/netatm/sigpvc/sigpvc_var.h
+++ b/sys/netatm/sigpvc/sigpvc_var.h
@@ -38,7 +38,7 @@
#ifndef _SIGPVC_SIGPVC_VAR_H
#define _SIGPVC_SIGPVC_VAR_H
-#ifdef ATM_KERNEL
+#ifdef _KERNEL
/*
* Structure containing state information for each SigPVC protocol instance.
* There will be one instance for each ATM device interface using the SigPVC
@@ -52,7 +52,7 @@ struct sigpvc {
#define pv_addr pv_inst.si_addr
#define pv_vccq pv_inst.si_vccq
#define pv_state pv_inst.si_state
-#endif /* ATM_KERNEL */
+#endif /* _KERNEL */
/*
* SigPVC Protocol States
@@ -61,7 +61,7 @@ struct sigpvc {
#define SIGPVC_DETACH 2 /* Detach in progress */
-#ifdef ATM_KERNEL
+#ifdef _KERNEL
/*
* SigPVC Virtual Channel Connection control block. All information regarding
* the state of a SigPVC controlled VCC will be recorded here. There will be
@@ -70,7 +70,7 @@ struct sigpvc {
struct sigpvc_vccb {
struct vccb vcp_hdr; /* Generic vccb */
};
-#endif /* ATM_KERNEL */
+#endif /* _KERNEL */
/*
* SigPVC VCC Signalling Protocol States
@@ -80,7 +80,7 @@ struct sigpvc_vccb {
#define VCCS_FREE 2 /* Waiting for user to free resources */
-#ifdef ATM_KERNEL
+#ifdef _KERNEL
/*
* Global function declarations
*/
@@ -90,6 +90,6 @@ struct sigpvc_vccb {
int sigpvc_create_pvc __P((struct sigpvc *, Atm_connvc *, int *));
void sigpvc_close_vcc __P((struct vccb *));
-#endif /* ATM_KERNEL */
+#endif /* _KERNEL */
#endif /* _SIGPVC_SIGPVC_VAR_H */