mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Use struct thread instead of d_thread_t.
This commit is contained in:
parent
7eaa41aed8
commit
8060a8933e
1 changed files with 2 additions and 2 deletions
|
|
@ -255,7 +255,7 @@ nfs4dev_uninit(void)
|
|||
|
||||
/* device interface functions */
|
||||
static int
|
||||
nfs4dev_open(struct cdev *dev, int flags, int fmt, d_thread_t *td)
|
||||
nfs4dev_open(struct cdev *dev, int flags, int fmt, struct thread *td)
|
||||
{
|
||||
if (dev != nfs4device)
|
||||
return ENODEV;
|
||||
|
|
@ -274,7 +274,7 @@ nfs4dev_open(struct cdev *dev, int flags, int fmt, d_thread_t *td)
|
|||
}
|
||||
|
||||
static int
|
||||
nfs4dev_close(struct cdev *dev, int flags, int fmt, d_thread_t *td)
|
||||
nfs4dev_close(struct cdev *dev, int flags, int fmt, struct thread *td)
|
||||
{
|
||||
struct nfs4dev_upcall * u;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue