summaryrefslogtreecommitdiffstats
path: root/sys/dev
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>1995-12-10 15:55:34 +0000
committerbde <bde@FreeBSD.org>1995-12-10 15:55:34 +0000
commit99e5039c72eb0b5010c09ee57fb090ef468688c7 (patch)
treef662b88f29ea0b27902ef1878e7b04370f7d3b1f /sys/dev
parentea83bba5aad7ea3d22e1e05e697b152bd0499edd (diff)
downloadFreeBSD-src-99e5039c72eb0b5010c09ee57fb090ef468688c7.zip
FreeBSD-src-99e5039c72eb0b5010c09ee57fb090ef468688c7.tar.gz
Removed new alias d_size_t for d_psize_t.
Removed old aliases d_rdwr_t and d_ttycv_t for d_read_t/d_write_t and d_devtotty_t. Sorted declarations of switch functions into switch order. Removed duplicated comments and declarations of nonexistent switch functions.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/cy/cy.c4
-rw-r--r--sys/dev/cy/cy_isa.c4
-rw-r--r--sys/dev/dgb/dgb.c4
-rw-r--r--sys/dev/rc/rc.c2
-rw-r--r--sys/dev/si/si.c4
-rw-r--r--sys/dev/sio/sio.c4
-rw-r--r--sys/dev/syscons/syscons.c8
7 files changed, 15 insertions, 15 deletions
diff --git a/sys/dev/cy/cy.c b/sys/dev/cy/cy.c
index bc078cc..fe37485 100644
--- a/sys/dev/cy/cy.c
+++ b/sys/dev/cy/cy.c
@@ -27,7 +27,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: cy.c,v 1.24 1995/12/08 11:14:04 julian Exp $
+ * $Id: cy.c,v 1.25 1995/12/08 23:20:24 phk Exp $
*/
#include "cy.h"
@@ -368,7 +368,7 @@ static d_read_t cyread;
static d_write_t cywrite;
static d_ioctl_t cyioctl;
static d_stop_t cystop;
-static d_ttycv_t cydevtotty;
+static d_devtotty_t cydevtotty;
#define CDEV_MAJOR 48
static struct cdevsw cy_cdevsw =
diff --git a/sys/dev/cy/cy_isa.c b/sys/dev/cy/cy_isa.c
index bc078cc..fe37485 100644
--- a/sys/dev/cy/cy_isa.c
+++ b/sys/dev/cy/cy_isa.c
@@ -27,7 +27,7 @@
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: cy.c,v 1.24 1995/12/08 11:14:04 julian Exp $
+ * $Id: cy.c,v 1.25 1995/12/08 23:20:24 phk Exp $
*/
#include "cy.h"
@@ -368,7 +368,7 @@ static d_read_t cyread;
static d_write_t cywrite;
static d_ioctl_t cyioctl;
static d_stop_t cystop;
-static d_ttycv_t cydevtotty;
+static d_devtotty_t cydevtotty;
#define CDEV_MAJOR 48
static struct cdevsw cy_cdevsw =
diff --git a/sys/dev/dgb/dgb.c b/sys/dev/dgb/dgb.c
index f293977..69bf30c 100644
--- a/sys/dev/dgb/dgb.c
+++ b/sys/dev/dgb/dgb.c
@@ -1,5 +1,5 @@
/*-
- * dgb.c $Id: dgb.c,v 1.10 1995/12/08 11:12:42 julian Exp $
+ * dgb.c $Id: dgb.c,v 1.11 1995/12/08 23:19:28 phk Exp $
*
* Digiboard driver.
*
@@ -201,7 +201,7 @@ static d_read_t dgbread;
static d_write_t dgbwrite;
static d_ioctl_t dgbioctl;
static d_stop_t dgbstop;
-static d_ttycv_t dgbdevtotty;
+static d_devtotty_t dgbdevtotty;
#define CDEV_MAJOR 58
static struct cdevsw dgb_cdevsw =
diff --git a/sys/dev/rc/rc.c b/sys/dev/rc/rc.c
index 71d4fc0..2c26c31 100644
--- a/sys/dev/rc/rc.c
+++ b/sys/dev/rc/rc.c
@@ -106,7 +106,7 @@ static d_read_t rcread;
static d_write_t rcwrite;
static d_ioctl_t rcioctl;
static d_stop_t rcstop;
-static d_ttycv_t rcdevtotty;
+static d_devtotty_t rcdevtotty;
#define CDEV_MAJOR 63
static struct cdevsw rc_cdevsw =
diff --git a/sys/dev/si/si.c b/sys/dev/si/si.c
index 9fe26bb..5cc1e18 100644
--- a/sys/dev/si/si.c
+++ b/sys/dev/si/si.c
@@ -30,7 +30,7 @@
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
* NO EVENT SHALL THE AUTHORS BE LIABLE.
*
- * $Id: si.c,v 1.24 1995/12/08 23:20:41 phk Exp $
+ * $Id: si.c,v 1.25 1995/12/10 13:39:12 phk Exp $
*/
#ifndef lint
@@ -119,7 +119,7 @@ static d_read_t siread;
static d_write_t siwrite;
static d_ioctl_t siioctl;
static d_stop_t sistop;
-static d_ttycv_t sidevtotty;
+static d_devtotty_t sidevtotty;
#define CDEV_MAJOR 68
static struct cdevsw si_cdevsw =
diff --git a/sys/dev/sio/sio.c b/sys/dev/sio/sio.c
index b3a01b9..fa5941c 100644
--- a/sys/dev/sio/sio.c
+++ b/sys/dev/sio/sio.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*
* from: @(#)com.c 7.5 (Berkeley) 5/16/91
- * $Id: sio.c,v 1.126 1995/12/08 23:20:44 phk Exp $
+ * $Id: sio.c,v 1.127 1995/12/10 13:39:13 phk Exp $
*/
#include "sio.h"
@@ -305,7 +305,7 @@ static d_read_t sioread;
static d_write_t siowrite;
static d_ioctl_t sioioctl;
static d_stop_t siostop;
-static d_ttycv_t siodevtotty;
+static d_devtotty_t siodevtotty;
#define CDEV_MAJOR 28
static struct cdevsw sio_cdevsw =
diff --git a/sys/dev/syscons/syscons.c b/sys/dev/syscons/syscons.c
index 6c3634d..dc628c7 100644
--- a/sys/dev/syscons/syscons.c
+++ b/sys/dev/syscons/syscons.c
@@ -25,7 +25,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
- * $Id: syscons.c,v 1.135 1995/12/08 11:15:28 julian Exp $
+ * $Id: syscons.c,v 1.136 1995/12/10 13:39:18 phk Exp $
*/
#include "sc.h"
@@ -158,10 +158,10 @@ struct isa_driver scdriver = {
static d_open_t scopen;
static d_close_t scclose;
-static d_rdwr_t scread;
-static d_rdwr_t scwrite;
+static d_read_t scread;
+static d_write_t scwrite;
static d_ioctl_t scioctl;
-static d_ttycv_t scdevtotty;
+static d_devtotty_t scdevtotty;
static d_mmap_t scmmap;
static struct cdevsw scdevsw = {
OpenPOWER on IntegriCloud