summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking/sys
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-03-19 07:01:40 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-03-19 07:01:40 +0000
commit1a26f53b0ece07805dce254f5891b1b47a65c2f6 (patch)
tree0a425d58a42f43aa3f872d2fd2c1de9ee5bc93fa /cpukit/libnetworking/sys
parentRemove machine/conf.h. (diff)
downloadrtems-1a26f53b0ece07805dce254f5891b1b47a65c2f6.tar.bz2
Don't include machine/conf.h.
Update copyright notice. Remove unused/non-implemented declarations.
Diffstat (limited to 'cpukit/libnetworking/sys')
-rw-r--r--cpukit/libnetworking/sys/conf.h41
1 files changed, 9 insertions, 32 deletions
diff --git a/cpukit/libnetworking/sys/conf.h b/cpukit/libnetworking/sys/conf.h
index 8df11dfdd6..a72e0963b8 100644
--- a/cpukit/libnetworking/sys/conf.h
+++ b/cpukit/libnetworking/sys/conf.h
@@ -1,6 +1,8 @@
/*-
* Copyright (c) 1990, 1993
* The Regents of the University of California. All rights reserved.
+ * Copyright (c) 2000
+ * Poul-Henning Kamp. All rights reserved.
* (c) UNIX System Laboratories, Inc.
* All or some portions of this file are derived from material licensed
* to the University of California by American Telephone and Telegraph
@@ -15,10 +17,6 @@
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- * must display the following acknowledgement:
- * This product includes software developed by the University of
- * California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
@@ -36,12 +34,18 @@
* SUCH DAMAGE.
*
* @(#)conf.h 8.5 (Berkeley) 1/9/95
+ * $FreeBSD: src/sys/sys/conf.h,v 1.231 2007/02/02 22:27:45 bms Exp $
+ */
+
+/*
* $Id$
*/
#ifndef _SYS_CONF_H_
#define _SYS_CONF_H_
+#ifdef _KERNEL
+
/*
* Definitions of device driver entry switches
*/
@@ -51,33 +55,6 @@ struct proc;
struct tty;
struct uio;
struct vnode;
-
-typedef int d_open_t(dev_t dev, int oflags, int devtype, struct proc *p);
-typedef int d_close_t(dev_t dev, int fflag, int devtype, struct proc *p);
-typedef void d_strategy_t(struct buf *bp);
-typedef int d_ioctl_t(dev_t dev, int cmd, caddr_t data,
- int fflag, struct proc *p);
-typedef int d_dump_t(dev_t dev);
-typedef int d_psize_t(dev_t dev);
-
-typedef int d_read_t(dev_t dev, struct uio *uio, int ioflag);
-typedef int d_write_t(dev_t dev, struct uio *uio, int ioflag);
-typedef void d_stop_t(struct tty *tp, int rw);
-typedef int d_reset_t(dev_t dev);
-typedef struct tty *d_devtotty_t(dev_t dev);
-typedef int d_select_t(dev_t dev, int which, struct proc *p);
-typedef int d_mmap_t(dev_t dev, int offset, int nprot);
-
-typedef int l_open_t(dev_t dev, struct tty *tp);
-typedef int l_close_t(struct tty *tp, int flag);
-typedef int l_read_t(struct tty *tp, struct uio *uio, int flag);
-typedef int l_write_t(struct tty *tp, struct uio *uio, int flag);
-typedef int l_ioctl_t(struct tty *tp, int cmd, caddr_t data,
- int flag, struct proc *p);
-typedef int l_rint_t(int c, struct tty *tp);
-typedef int l_start_t(struct tty *tp);
-typedef int l_modem_t(struct tty *tp, int flag);
-
-#include <machine/conf.h>
+#endif /* _KERNEL */
#endif /* !_SYS_CONF_H_ */