1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-17 10:26:15 +00:00

Change dev_link() to devfs_link()

This commit is contained in:
Marc G. Fournier 1996-04-02 04:54:26 +00:00
parent 2523e82c8b
commit aab063aa77
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=14994

View File

@ -12,7 +12,7 @@
* on the understanding that TFS is not responsible for the correct
* functioning of this software in any circumstances.
*
* $Id: st.c,v 1.66 1996/03/29 04:35:09 scrappy Exp $
* $Id: st.c,v 1.67 1996/04/01 02:12:53 scrappy Exp $
*/
/*
@ -334,11 +334,11 @@ stattach(struct scsi_link *sc_link)
"rst%d.ctl", unit);
/** add links **/
st->devfs_token.rst =
dev_link(st->devfs_token.rst_[0], "rst%ld", unit);
devfs_link(st->devfs_token.rst_[0], "rst%ld", unit);
st->devfs_token.nrst =
dev_link(st->devfs_token.nrst_[0], "nrst%ld", unit);
devfs_link(st->devfs_token.nrst_[0], "nrst%ld", unit);
st->devfs_token.erst =
dev_link(st->devfs_token.erst_[0], "erst%ld", unit);
devfs_link(st->devfs_token.erst_[0], "erst%ld", unit);
#endif
return 0;
}