diff options
| author | matt <matt@NetBSD.org> | 2000-11-14 06:44:12 +0000 |
|---|---|---|
| committer | matt <matt@NetBSD.org> | 2000-11-14 06:44:12 +0000 |
| commit | 3b275bc23017f4593729f625fd32dec8a3bc8326 (patch) | |
| tree | 14fc764fa4f1ac3e665995853bd2e25cecb3cd96 /sys/dev/ofw | |
| parent | 1365092255b3b1fdcd181ee02b7116768888e6bd (diff) | |
Add OF_nextprop and OF_setprop prototypes.
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 69828c1752e..72801fae9c8 100644 --- a/sys/dev/ofw/openfirm.h +++ b/sys/dev/ofw/openfirm.h @@ -1,4 +1,4 @@ -/* $NetBSD: openfirm.h,v 1.13 2000/11/14 06:42:27 matt Exp $ */ +/* $NetBSD: openfirm.h,v 1.14 2000/11/14 06:44:12 matt Exp $ */ /* * Copyright (C) 1995, 1996 Wolfgang Solfrank. @@ -82,6 +82,8 @@ int OF_parent (int phandle); int OF_instance_to_package (int ihandle); int OF_getproplen (int handle, char *prop); int OF_getprop (int handle, char *prop, void *buf, int buflen); +int OF_nextprop (int handle, char *prop, char *nextprop); +int OF_setprop (int handle, char *prop, const void *buf, int buflen); int OF_finddevice (char *name); int OF_instance_to_path (int ihandle, char *buf, int buflen); int OF_package_to_path (int phandle, char *buf, int buflen); |
