aboutsummaryrefslogtreecommitdiff
path: root/sys/compat/linux/linux_ioctl.c
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2001-06-13 10:58:39 +0000
committerPeter Wemm <peter@FreeBSD.org>2001-06-13 10:58:39 +0000
commitf41325db5f16640212574a03b9a34e5ed4a884ca (patch)
tree88aef8097c80f09c2f725d61b6da4d433a595a61 /sys/compat/linux/linux_ioctl.c
parentf3a6406c668744d1692c960352110b9b4c7ea9a6 (diff)
Notes
Diffstat (limited to 'sys/compat/linux/linux_ioctl.c')
-rw-r--r--sys/compat/linux/linux_ioctl.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/sys/compat/linux/linux_ioctl.c b/sys/compat/linux/linux_ioctl.c
index 1cf76cf80d0ed..3b14eb23e437e 100644
--- a/sys/compat/linux/linux_ioctl.c
+++ b/sys/compat/linux/linux_ioctl.c
@@ -1516,37 +1516,3 @@ linux_ioctl_unregister_handler(struct linux_ioctl_handler *h)
return (EINVAL);
}
-
-int
-linux_ioctl_register_handlers(struct linker_set *s)
-{
- int error, i;
-
- if (s == NULL)
- return (EINVAL);
-
- for (i = 0; i < s->ls_length; i++) {
- error = linux_ioctl_register_handler(s->ls_items[i]);
- if (error)
- return (error);
- }
-
- return (0);
-}
-
-int
-linux_ioctl_unregister_handlers(struct linker_set *s)
-{
- int error, i;
-
- if (s == NULL)
- return (EINVAL);
-
- for (i = 0; i < s->ls_length; i++) {
- error = linux_ioctl_unregister_handler(s->ls_items[i]);
- if (error)
- return (error);
- }
-
- return (0);
-}