diff options
author | marius <marius@FreeBSD.org> | 2004-05-22 16:45:19 +0000 |
---|---|---|
committer | marius <marius@FreeBSD.org> | 2004-05-22 16:45:19 +0000 |
commit | 24c9adb5b9657b024598ffd14ce5b230e7e9ba66 (patch) | |
tree | 8133c229a5f8dddd4dccb60f25b9ce8b6c7a3209 /sys/dev/ofw | |
parent | 630c60c775383107787c595cde447ba88cb494be (diff) | |
download | FreeBSD-src-24c9adb5b9657b024598ffd14ce5b230e7e9ba66.zip FreeBSD-src-24c9adb5b9657b024598ffd14ce5b230e7e9ba66.tar.gz |
- Rearrange a comment to fit in 80 chars per line, like the rest of this
file.
- Remove a superfluous ';'.
Diffstat (limited to 'sys/dev/ofw')
-rw-r--r-- | sys/dev/ofw/openfirm.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/dev/ofw/openfirm.c b/sys/dev/ofw/openfirm.c index f1a609a..07ff8d2 100644 --- a/sys/dev/ofw/openfirm.c +++ b/sys/dev/ofw/openfirm.c @@ -325,9 +325,9 @@ OF_getprop(phandle_t package, char *propname, void *buf, int buflen) } /* - * Store the value of a property of a package into newly allocated memory (using - * the M_OFWPROP malloc pool and M_WAITOK). elsz is the size of a single element, - * the number of elements is return in number. + * Store the value of a property of a package into newly allocated memory + * (using the M_OFWPROP malloc pool and M_WAITOK). elsz is the size of a + * single element, the number of elements is return in number. */ int OF_getprop_alloc(phandle_t package, char *propname, int elsz, void **buf) @@ -385,7 +385,7 @@ OF_setprop(phandle_t package, char *propname, void *buf, int len) cell_t nreturns; cell_t package; cell_t propname; - cell_t buf;; + cell_t buf; cell_t len; cell_t size; } args = { |