diff options
author | phk <phk@FreeBSD.org> | 1999-05-09 13:11:37 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1999-05-09 13:11:37 +0000 |
commit | 72107aa299ca5d6cf21fc58bb6428f1d19b6141f (patch) | |
tree | 2311e2618d3e10ca5e0a77d956692ee9e6b47738 /sys | |
parent | cecd2635d9c69e75d18bce08c93ba291665bf90f (diff) | |
download | FreeBSD-src-72107aa299ca5d6cf21fc58bb6428f1d19b6141f.zip FreeBSD-src-72107aa299ca5d6cf21fc58bb6428f1d19b6141f.tar.gz |
remove cast from dev_t to dev_t.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/coda/coda_vfsops.c | 13 | ||||
-rw-r--r-- | sys/fs/coda/coda_vfsops.c | 13 |
2 files changed, 22 insertions, 4 deletions
diff --git a/sys/coda/coda_vfsops.c b/sys/coda/coda_vfsops.c index 3af2ad2..dfb4e0e 100644 --- a/sys/coda/coda_vfsops.c +++ b/sys/coda/coda_vfsops.c @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/cfs/coda_vfsops.c,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_vfsops.c,v 1.11 1999/01/17 20:25:17 peter Exp $ + * $Id: coda_vfsops.c,v 1.12 1999/05/08 06:39:04 phk Exp $ * */ @@ -47,6 +47,15 @@ /* * HISTORY * $Log: coda_vfsops.c,v $ + * Revision 1.12 1999/05/08 06:39:04 phk + * I got tired of seeing all the cdevsw[major(foo)] all over the place. + * + * Made a new (inline) function devsw(dev_t dev) and substituted it. + * + * Changed to the BDEV variant to this format as well: bdevsw(dev_t dev) + * + * DEVFS will eventually benefit from this change too. + * * Revision 1.11 1999/01/17 20:25:17 peter * Clean up the KLD/LKM goop a bit. * @@ -745,7 +754,7 @@ struct mount *devtomp(dev) for (mp = mountlist.cqh_first; mp != (void*)&mountlist; mp = nmp) { nmp = mp->mnt_list.cqe_next; - if (((VFSTOUFS(mp))->um_dev == (dev_t) dev)) { + if (((VFSTOUFS(mp))->um_dev == dev)) { /* mount corresponds to UFS and the device matches one we want */ return(mp); } diff --git a/sys/fs/coda/coda_vfsops.c b/sys/fs/coda/coda_vfsops.c index 3af2ad2..dfb4e0e 100644 --- a/sys/fs/coda/coda_vfsops.c +++ b/sys/fs/coda/coda_vfsops.c @@ -27,7 +27,7 @@ * Mellon the rights to redistribute these changes without encumbrance. * * @(#) src/sys/cfs/coda_vfsops.c,v 1.1.1.1 1998/08/29 21:14:52 rvb Exp $ - * $Id: coda_vfsops.c,v 1.11 1999/01/17 20:25:17 peter Exp $ + * $Id: coda_vfsops.c,v 1.12 1999/05/08 06:39:04 phk Exp $ * */ @@ -47,6 +47,15 @@ /* * HISTORY * $Log: coda_vfsops.c,v $ + * Revision 1.12 1999/05/08 06:39:04 phk + * I got tired of seeing all the cdevsw[major(foo)] all over the place. + * + * Made a new (inline) function devsw(dev_t dev) and substituted it. + * + * Changed to the BDEV variant to this format as well: bdevsw(dev_t dev) + * + * DEVFS will eventually benefit from this change too. + * * Revision 1.11 1999/01/17 20:25:17 peter * Clean up the KLD/LKM goop a bit. * @@ -745,7 +754,7 @@ struct mount *devtomp(dev) for (mp = mountlist.cqh_first; mp != (void*)&mountlist; mp = nmp) { nmp = mp->mnt_list.cqe_next; - if (((VFSTOUFS(mp))->um_dev == (dev_t) dev)) { + if (((VFSTOUFS(mp))->um_dev == dev)) { /* mount corresponds to UFS and the device matches one we want */ return(mp); } |