From: Sascha Wildner Date: Mon, 13 Feb 2012 22:54:06 +0000 (+0100) Subject: Remove an obsolete header file specific to labpc(4) (which was removed). X-Git-Tag: v3.4.0rc~1201^2 X-Git-Url: https://gitweb.dragonflybsd.org/dragonfly.git/commitdiff_plain/a3decb84b257a764fe87b34385a3f1b8ce4968f7 Remove an obsolete header file specific to labpc(4) (which was removed). --- diff --git a/Makefile_upgrade.inc b/Makefile_upgrade.inc index 7e8120c8cc..e12e28e7a3 100644 --- a/Makefile_upgrade.inc +++ b/Makefile_upgrade.inc @@ -1976,6 +1976,7 @@ TO_REMOVE+=/usr/share/man/cat8/isdntrace.8.gz TO_REMOVE+=/usr/share/man/man8/isdntrace.8.gz TO_REMOVE+=/usr/libexec/binutils221/elf/ld TO_REMOVE+=/usr/libexec/binutils222/elf/ld +TO_REMOVE+=/usr/include/sys/dataacq.h .if ${MACHINE_ARCH} == "x86_64" TO_REMOVE+=/usr/libdata/stallion/2681.sys diff --git a/sys/sys/dataacq.h b/sys/sys/dataacq.h deleted file mode 100644 index b6e23cd9df..0000000000 --- a/sys/sys/dataacq.h +++ /dev/null @@ -1,38 +0,0 @@ -/* - * Header for general data acquisition definitions. - * - * $FreeBSD: src/sys/sys/dataacq.h,v 1.4.6.1 2000/08/02 21:27:07 peter Exp $ - * $DragonFly: src/sys/sys/dataacq.h,v 1.2 2003/06/17 04:28:58 dillon Exp $ - */ - -#ifndef _SYS_DATAACQ_H_ -#define _SYS_DATAACQ_H_ - -#include - -/* Period in microseconds between analog I/O samples. - */ -#define AD_MICRO_PERIOD_SET _IOW('A', 1, long) -#define AD_MICRO_PERIOD_GET _IOR('A', 2, long) - -/* Gain list support. Initially all gains are 1. If the board - * supports no gains at all then AD_NGAINS_GET will return a 0. - * - * AD_NGAINS_GET: Return the number of gains the board supports - * - * AD_SUPPORTED_GAINS: Get the supported gains. - * The driver will copy out "ngains" doubles, - * where "ngains" is obtained with AD_NGAINS_GET. - * - * AD_GAINS_SET: Set the gain list. The driver will copy in "ngains" ints. - * - * AD_GAINS_GET: Get the gain list. The driver will copy out "ngains" ints. - */ - -#define AD_NGAINS_GET _IOR('A', 3, int) -#define AD_NCHANS_GET _IOR('A', 4, int) -#define AD_SUPPORTED_GAINS _IO('A', 5) -#define AD_GAINS_SET _IO('A', 6) -#define AD_GAINS_GET _IO('A', 7) - -#endif /* !_SYS_DATAACQ_H_ */