d_stop functions always returned void. Fix the declaration of d_stop_t

to match.
This commit is contained in:
Bruce Evans 1995-09-08 19:18:02 +00:00
parent 5116eb02e2
commit 38f93a354c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=10636
2 changed files with 4 additions and 4 deletions

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)conf.h 8.3 (Berkeley) 1/21/94
* $Id: conf.h,v 1.14 1995/05/14 03:00:03 davidg Exp $
* $Id: conf.h,v 1.15 1995/05/30 08:14:14 rgrimes Exp $
*/
#ifndef _SYS_CONF_H_
@ -62,7 +62,7 @@ typedef int d_psize_t __P((dev_t));
typedef int d_read_t __P((dev_t, struct uio *, int));
typedef int d_write_t __P((dev_t, struct uio *, int));
typedef int d_rdwr_t __P((dev_t, struct uio *, int));
typedef int d_stop_t __P((struct tty *, int));
typedef void d_stop_t __P((struct tty *, int));
typedef int d_reset_t __P((int));
typedef int d_select_t __P((dev_t, int, struct proc *));
typedef int d_mmap_t __P((dev_t, int, int));

View File

@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)conf.h 8.3 (Berkeley) 1/21/94
* $Id: conf.h,v 1.14 1995/05/14 03:00:03 davidg Exp $
* $Id: conf.h,v 1.15 1995/05/30 08:14:14 rgrimes Exp $
*/
#ifndef _SYS_CONF_H_
@ -62,7 +62,7 @@ typedef int d_psize_t __P((dev_t));
typedef int d_read_t __P((dev_t, struct uio *, int));
typedef int d_write_t __P((dev_t, struct uio *, int));
typedef int d_rdwr_t __P((dev_t, struct uio *, int));
typedef int d_stop_t __P((struct tty *, int));
typedef void d_stop_t __P((struct tty *, int));
typedef int d_reset_t __P((int));
typedef int d_select_t __P((dev_t, int, struct proc *));
typedef int d_mmap_t __P((dev_t, int, int));