diff options
author | scrappy <scrappy@FreeBSD.org> | 1996-04-02 06:17:14 +0000 |
---|---|---|
committer | scrappy <scrappy@FreeBSD.org> | 1996-04-02 06:17:14 +0000 |
commit | e7c6a05609f34aff603f8c9e1ec7c5b691c7bf05 (patch) | |
tree | 484f88a4a493e084957c2a2e7626ff2c60139b08 | |
parent | e14745c8eaaf2dfc52d61d631982c5f4fc9a61be (diff) | |
download | FreeBSD-src-e7c6a05609f34aff603f8c9e1ec7c5b691c7bf05.zip FreeBSD-src-e7c6a05609f34aff603f8c9e1ec7c5b691c7bf05.tar.gz |
take out prototype for dev_linkf()
change prototype for dev_link() to devfs_link()
-rw-r--r-- | sys/sys/devfsext.h | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/sys/sys/devfsext.h b/sys/sys/devfsext.h index bcefb1c..367b6c5 100644 --- a/sys/sys/devfsext.h +++ b/sys/sys/devfsext.h @@ -1,7 +1,7 @@ /* usual BSD style copyright here */ /* Written by Julian Elischer (julian@dialix.oz.au)*/ /* - * $Id: devfsext.h,v 1.8 1996/03/27 18:29:29 bde Exp $ + * $Id: devfsext.h,v 1.9 1996/03/28 14:35:36 scrappy Exp $ */ #ifndef _SYS_DEVFSECT_H_ @@ -24,16 +24,11 @@ void *devfs_add_devswf(void *devsw, char *fmt, ...) ; -void *dev_link(char *path, - char *name, - void *original); /* the result of a previous dev_link +void *devfs_link(char *path, + char *name, + void *original); /* the result of a previous dev_link or dev_add operation */ -void *dev_linkf(void *original, /* the result of a previous dev_link */ - char *fmt, /* or dev_add operation */ - ...); - - /* remove the device the cookie represents */ void devfs_remove_dev(void *devnmp); |