Use an ihandle_t to store the instance handle of an opened device

instead of a phandle_t (package handle). Since both are typedefed
to unsigned int, this is more or less cosmetic.
This commit is contained in:
Marius Strobl 2005-10-20 11:14:34 +00:00
parent 5bcc5808d0
commit 89189a9d8e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=151507

View File

@ -31,7 +31,7 @@
struct ofw_devdesc {
struct devsw *d_dev;
int d_type;
phandle_t d_handle;
ihandle_t d_handle;
char d_path[256];
};