diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2011-07-04 16:52:42 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2011-07-04 16:52:42 +0000 |
commit | 1ae6a4b8fc76860603ec314110187211500cd17b (patch) | |
tree | b998df5beeb32675f8b6e012091ece866b12aef0 /sys/arch/arm | |
parent | 6c9d4597b187bccba0dc7a8a7b51a8e4d5803f38 (diff) |
Nuke the useless D_KQFILTER flag and just check that d_kqfilter is
filled in. Move D_CLONE down to 0x0001 as suggested by thib.
ok deraadt thib
Diffstat (limited to 'sys/arch/arm')
-rw-r--r-- | sys/arch/arm/include/conf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/arm/include/conf.h b/sys/arch/arm/include/conf.h index 9fe2f2d3c52..a0f49a5e616 100644 --- a/sys/arch/arm/include/conf.h +++ b/sys/arch/arm/include/conf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: conf.h,v 1.9 2011/03/23 16:54:34 pirofti Exp $ */ +/* $OpenBSD: conf.h,v 1.10 2011/07/04 16:52:41 nicm Exp $ */ /* $NetBSD: conf.h,v 1.7 2002/04/19 01:04:39 wiz Exp $ */ /* @@ -62,7 +62,7 @@ cdev_decl(fd); dev_init(c,n,open), dev_init(c,n,close), (dev_type_read((*))) enodev, \ (dev_type_write((*))) enodev, dev_init(c,n,ioctl), \ (dev_type_stop((*))) enodev, 0, selfalse, \ - (dev_type_mmap((*))) enodev, 0, D_KQFILTER, dev_init(c,n,kqfilter) } + (dev_type_mmap((*))) enodev, 0, 0, dev_init(c,n,kqfilter) } cdev_decl(com); cdev_decl(lpt); |