diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 2001-08-19 05:33:00 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 2001-08-19 05:33:00 +0000 |
commit | 7a3f162d9cb50e146d3415e0d89da3733ae86ffe (patch) | |
tree | 14d93974d2031c360e56b08bf832d060e50ed425 /sys/dev/ofw | |
parent | 32bcdd7cb629cb947cd05ca034216a885f7986ef (diff) |
setprop and nextprop
Diffstat (limited to 'sys/dev/ofw')
-rw-r--r-- | sys/dev/ofw/openfirm.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/ofw/openfirm.h b/sys/dev/ofw/openfirm.h index 964a16b8452..e1065011071 100644 --- a/sys/dev/ofw/openfirm.h +++ b/sys/dev/ofw/openfirm.h @@ -1,4 +1,4 @@ -/* $OpenBSD: openfirm.h,v 1.4 2001/06/25 23:04:39 drahn Exp $ */ +/* $OpenBSD: openfirm.h,v 1.5 2001/08/19 05:32:59 art Exp $ */ /* $NetBSD: openfirm.h,v 1.1 1996/09/30 16:35:10 ws Exp $ */ /* @@ -47,6 +47,8 @@ int OF_child __P((int phandle)); int OF_parent __P((int phandle)); int OF_instance_to_package __P((int ihandle)); int OF_getprop __P((int handle, char *prop, void *buf, int buflen)); +int OF_setprop __P((int, char *, const void *, int)); +int OF_nextprop __P((int, char *, void *)); int OF_finddevice __P((char *name)); int OF_instance_to_path __P((int ihandle, char *buf, int buflen)); int OF_package_to_path __P((int phandle, char *buf, int buflen)); |