Module Name:    src
Committed By:   christos
Date:           Thu May 16 18:43:09 UTC 2013

Modified Files:
        src/sys/dev/ofw: openfirm.h

Log Message:
sort by name, add OF_quiesce


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 src/sys/dev/ofw/openfirm.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/ofw/openfirm.h
diff -u src/sys/dev/ofw/openfirm.h:1.29 src/sys/dev/ofw/openfirm.h:1.30
--- src/sys/dev/ofw/openfirm.h:1.29	Sun Feb 28 08:59:05 2010
+++ src/sys/dev/ofw/openfirm.h	Thu May 16 14:43:09 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: openfirm.h,v 1.29 2010/02/28 13:59:05 martin Exp $	*/
+/*	$NetBSD: openfirm.h,v 1.30 2013/05/16 18:43:09 christos Exp $	*/
 
 /*
  * Copyright (C) 1995, 1996 Wolfgang Solfrank.
@@ -71,32 +71,34 @@ struct ofbus_attach_args {
  */
 extern char *OF_buf;
 
-int	OF_peer(int);
+void	OF_boot(const char *) __dead;
+int	OF_call_method(const char *, int, int, int, ...);
+int	OF_call_method_1(const char *, int, int, ...);
 int	OF_child(int);
-int	OF_parent(int);
-int	OF_instance_to_package(int);
-int	OF_getproplen(int, const char *);
-int	OF_getprop(int, const char *, void *, int);
-int	OF_nextprop(int, const char *, void *);
-int	OF_setprop(int, const char *, const void *, int);
+void	*OF_claim(void *, u_int, u_int);
+void	OF_close(int);
+void	OF_enter(void);
+void	OF_exit(void) __dead;
 int	OF_finddevice(const char *);
+int	OF_getprop(int, const char *, void *, int);
+int	OF_getproplen(int, const char *);
+int	OF_instance_to_package(int);
 int	OF_instance_to_path(int, char *, int);
-int	OF_package_to_path(int, char *, int);
-int	OF_call_method_1(const char *, int, int, ...);
-int	OF_call_method(const char *, int, int, int, ...);
+int	OF_interpret(const char *, int, int, ...);
+int	OF_milliseconds(void);
+int	OF_nextprop(int, const char *, void *);
 int	OF_open(const char *);
-void	OF_close(int);
+int	OF_package_to_path(int, char *, int);
+int	OF_parent(int);
+int	OF_peer(int);
+void	OF_quiesce(void);
 int	OF_read(int, void *, int);
-int	OF_write(int, const void *, int);
-int	OF_seek(int, u_quad_t);
-void	*OF_claim(void *, u_int, u_int);
 void	OF_release(void *, u_int);
-int	OF_milliseconds(void);
-void	OF_boot(const char *) __dead;
-void	OF_enter(void);
-void	OF_exit(void) __dead;
-int	OF_interpret(const char *, int, int, ...);
+int	OF_seek(int, u_quad_t);
 void	(*OF_set_callback(void(*)(void *)))(void *);
+int	OF_setprop(int, const char *, const void *, int);
+int	OF_write(int, const void *, int);
+
 int	openfirmware(void *);
 
 /*

Reply via email to