From 3b275bc23017f4593729f625fd32dec8a3bc8326 Mon Sep 17 00:00:00 2001 From: matt Date: Tue, 14 Nov 2000 06:44:12 +0000 Subject: [PATCH] Add OF_nextprop and OF_setprop prototypes. --- sys/dev/ofw/openfirm.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys/dev/ofw/openfirm.h b/sys/dev/ofw/openfirm.h index 69828c1752e4..72801fae9c81 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);