diff options
| author | Bjoern A. Zeeb <bz@FreeBSD.org> | 2007-07-06 07:21:56 +0000 |
|---|---|---|
| committer | Bjoern A. Zeeb <bz@FreeBSD.org> | 2007-07-06 07:21:56 +0000 |
| commit | ec8fa4cfd9c06c9b082139952651e1353bd6d502 (patch) | |
| tree | 5a5fd69b684f615fa39d9f92702c4072a6def197 /share | |
| parent | 9fa28ff687d8760285c747494f0e562f7ba8a4d5 (diff) | |
Notes
Diffstat (limited to 'share')
| -rw-r--r-- | share/examples/isdn/FAQ | 2 | ||||
| -rw-r--r-- | share/examples/isdn/Overview | 4 | ||||
| -rw-r--r-- | share/examples/isdn/contrib/hplay.c | 2 | ||||
| -rw-r--r-- | share/examples/isdn/contrib/isdntelmux.c | 2 | ||||
| -rw-r--r-- | share/examples/isdn/i4brunppp/i4brunppp.c | 4 | ||||
| -rw-r--r-- | share/examples/isdn/v21/v21modem.c | 2 |
6 files changed, 8 insertions, 8 deletions
diff --git a/share/examples/isdn/FAQ b/share/examples/isdn/FAQ index b32ce7ba7dcd..f3a4fda52d6f 100644 --- a/share/examples/isdn/FAQ +++ b/share/examples/isdn/FAQ @@ -450,7 +450,7 @@ IEEE488 and ISDN cards often belong in this category. 8) add the flag value and function prototypes to layer1/i4b_l1.h 9) add support for NetBSD to layer1/isa_isic.c 10) add support for attach/probe to layer1/i4b_isic.c -11) add card type to machine/i4b_ioctl.h and update CARD_TYPEP_MAX +11) add card type to i4b/i4b_ioctl.h and update CARD_TYPEP_MAX 12) add an entry to the man page man/isic.4 Produce diffs (please use context diffs, flag "-c" for diff) and send them in. diff --git a/share/examples/isdn/Overview b/share/examples/isdn/Overview index 831350630b57..76043954c3ca 100644 --- a/share/examples/isdn/Overview +++ b/share/examples/isdn/Overview @@ -252,7 +252,7 @@ Debugging control (6) the device driver for /dev/i4bctl in conjunction with the userland program isdndebug(8) is used to set the debug level for each of the layers and several other parts of the system, information how to use - this is contained in machine/i4b_debug.h and all parts of the kernel + this is contained in i4b/i4b_debug.h and all parts of the kernel sources. It is only usable for passive cards. @@ -271,7 +271,7 @@ Layer 4 consisting of "messages" sent to userland and which are read(2) by the isdnd. The isdnd in turn sends "messages" to the kernel by using the ioctl(2) call. This protocol and the required messages for both - directions are documented in the machine/i4b_ioctl.h file and are + directions are documented in the i4b/i4b_ioctl.h file and are implemented in files i4b_i4bdrv.c and i4b_l4.c, the latter also containing much of the Layer 4 interface to the lower layers. diff --git a/share/examples/isdn/contrib/hplay.c b/share/examples/isdn/contrib/hplay.c index 10660ac7b7b1..763e5a865dfa 100644 --- a/share/examples/isdn/contrib/hplay.c +++ b/share/examples/isdn/contrib/hplay.c @@ -29,7 +29,7 @@ #include <sys/signal.h> #include <sys/ioctl.h> -#include <machine/i4b_tel_ioctl.h> +#include <i4b/i4b_tel_ioctl.h> #include "proto.h" #include "getargs.h" diff --git a/share/examples/isdn/contrib/isdntelmux.c b/share/examples/isdn/contrib/isdntelmux.c index 318ebfcb937e..1d517a7106a0 100644 --- a/share/examples/isdn/contrib/isdntelmux.c +++ b/share/examples/isdn/contrib/isdntelmux.c @@ -47,7 +47,7 @@ #include<sys/types.h> #include<sys/time.h> #include<sys/param.h> -#include<machine/i4b_tel_ioctl.h> +#include<i4b/i4b_tel_ioctl.h> // DECL DEFS #define BUFLEN 2048 diff --git a/share/examples/isdn/i4brunppp/i4brunppp.c b/share/examples/isdn/i4brunppp/i4brunppp.c index 7d1fe3cd51dc..3c8b6e76e243 100644 --- a/share/examples/isdn/i4brunppp/i4brunppp.c +++ b/share/examples/isdn/i4brunppp/i4brunppp.c @@ -59,8 +59,8 @@ #include <time.h> #include <ctype.h> -#include <machine/i4b_ioctl.h> -#include <machine/i4b_rbch_ioctl.h> +#include <i4b/i4b_ioctl.h> +#include <i4b/i4b_rbch_ioctl.h> #define I4BDEVICE "/dev/i4b" diff --git a/share/examples/isdn/v21/v21modem.c b/share/examples/isdn/v21/v21modem.c index f49eb06bf6f7..2707cdb392b5 100644 --- a/share/examples/isdn/v21/v21modem.c +++ b/share/examples/isdn/v21/v21modem.c @@ -25,7 +25,7 @@ #include <termios.h> #include <libutil.h> -#include <machine/i4b_tel_ioctl.h> +#include <i4b/i4b_tel_ioctl.h> static void create_session(void); static void input_byte(int byte, int stopbit); |
