summaryrefslogtreecommitdiffstats
path: root/sys/powerpc
diff options
context:
space:
mode:
authornwhitehorn <nwhitehorn@FreeBSD.org>2010-07-08 14:29:23 +0000
committernwhitehorn <nwhitehorn@FreeBSD.org>2010-07-08 14:29:23 +0000
commitb85d8a68d9fa34d4f2fe1d4a3b1eb0091b2c9bc3 (patch)
tree9637f8ab7789c026052bf168ab51a2449044666b /sys/powerpc
parent6ce8619526c2226cb93af40b5da3586ae5cd9154 (diff)
downloadFreeBSD-src-b85d8a68d9fa34d4f2fe1d4a3b1eb0091b2c9bc3.zip
FreeBSD-src-b85d8a68d9fa34d4f2fe1d4a3b1eb0091b2c9bc3.tar.gz
Change the argument type to OF_call_method to take an array of cell_t
instead of unsigned longs to prepare for platforms where they are not the same.
Diffstat (limited to 'sys/powerpc')
-rw-r--r--sys/powerpc/ofw/ofw_real.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/powerpc/ofw/ofw_real.c b/sys/powerpc/ofw/ofw_real.c
index 0482485..9cde977 100644
--- a/sys/powerpc/ofw/ofw_real.c
+++ b/sys/powerpc/ofw/ofw_real.c
@@ -97,7 +97,7 @@ static ssize_t ofw_real_instance_to_path(ofw_t, ihandle_t instance, char *buf,
static ssize_t ofw_real_package_to_path(ofw_t, phandle_t package, char *buf,
size_t len);
static int ofw_real_call_method(ofw_t, ihandle_t instance, const char *method,
- int nargs, int nreturns, unsigned long *args_and_returns);
+ int nargs, int nreturns, cell_t *args_and_returns);
static ihandle_t ofw_real_open(ofw_t, const char *device);
static void ofw_real_close(ofw_t, ihandle_t instance);
static ssize_t ofw_real_read(ofw_t, ihandle_t instance, void *addr, size_t len);
@@ -652,7 +652,7 @@ ofw_real_package_to_path(ofw_t ofw, phandle_t package, char *buf, size_t len)
/* Call the method in the scope of a given instance. */
static int
ofw_real_call_method(ofw_t ofw, ihandle_t instance, const char *method,
- int nargs, int nreturns, unsigned long *args_and_returns)
+ int nargs, int nreturns, cell_t *args_and_returns)
{
struct {
cell_t name;
@@ -666,8 +666,7 @@ ofw_real_call_method(ofw_t ofw, ihandle_t instance, const char *method,
2,
1,
};
- cell_t *cp;
- unsigned long *ap;
+ cell_t *cp, *ap;
int n;
if (nargs > 6)
OpenPOWER on IntegriCloud