mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
The cmd' and addr' args to psmioctl() were in the wrong order. This
probably broke MOUSEIOCREAD which is the only ioctl supported.
This commit is contained in:
parent
193e7834a5
commit
08ab924c0d
1 changed files with 1 additions and 1 deletions
|
|
@ -355,7 +355,7 @@ int psmread(dev_t dev, struct uio *uio, int flag)
|
|||
return(error);
|
||||
}
|
||||
|
||||
int psmioctl(dev_t dev, caddr_t addr, int cmd, int flag, struct proc *p)
|
||||
int psmioctl(dev_t dev, int cmd, caddr_t addr, int flag, struct proc *p)
|
||||
{
|
||||
struct psm_softc *sc;
|
||||
struct mouseinfo info;
|
||||
|
|
|
|||
Loading…
Reference in a new issue