summaryrefslogtreecommitdiff
path: root/sys/dev/sx
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2004-06-16 09:47:26 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2004-06-16 09:47:26 +0000
commit89c9c53da05197f657dfe8e0bdda6941a2e9a0d4 (patch)
tree624c885995e84df6decddd3291c60a15e50e3c85 /sys/dev/sx
parentd420fcda27350a7e2d3d8f3b2c9de6aa74df2e30 (diff)
Notes
Diffstat (limited to 'sys/dev/sx')
-rw-r--r--sys/dev/sx/sx.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/sx/sx.c b/sys/dev/sx/sx.c
index 5588ab75d41e..0e0687e63f8a 100644
--- a/sys/dev/sx/sx.c
+++ b/sys/dev/sx/sx.c
@@ -332,7 +332,7 @@ sxattach(
*/
static int
sxopen(
- dev_t dev,
+ struct cdev *dev,
int flag,
int mode,
d_thread_t *p)
@@ -501,7 +501,7 @@ out:
*/
static int
sxclose(
- dev_t dev,
+ struct cdev *dev,
int flag,
int mode,
d_thread_t *p)
@@ -641,7 +641,7 @@ sxdtrwakeup(void *chan)
*/
static int
sxwrite(
- dev_t dev,
+ struct cdev *dev,
struct uio *uio,
int flag)
{
@@ -690,7 +690,7 @@ out: splx(oldspl);
*/
static int
sxioctl(
- dev_t dev,
+ struct cdev *dev,
u_long cmd,
caddr_t data,
int flag,