aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lepore <ian@FreeBSD.org>2019-06-15 20:54:33 +0000
committerIan Lepore <ian@FreeBSD.org>2019-06-15 20:54:33 +0000
commitcd6e47c168bbbd1de96af9f947c918a23f404c40 (patch)
treecb5a98550c4d48c1f5d68f51cbc60e1491c1343a
parent968e5efcca391943407282b398e928747984fc8f (diff)
downloadsrc-cd6e47c168bbbd1de96af9f947c918a23f404c40.tar.gz
src-cd6e47c168bbbd1de96af9f947c918a23f404c40.zip
Unwrap prototype lines so that return type and function name are on the
same line. No functional changes.
Notes
Notes: svn path=/head/; revision=349081
-rw-r--r--sys/dev/pwm/pwmbus.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/sys/dev/pwm/pwmbus.h b/sys/dev/pwm/pwmbus.h
index cf8565710e98..52bfebe69a4d 100644
--- a/sys/dev/pwm/pwmbus.h
+++ b/sys/dev/pwm/pwmbus.h
@@ -43,17 +43,13 @@ struct pwm_channel {
};
typedef struct pwm_channel *pwm_channel_t;
-int
-pwm_get_by_ofw_propidx(device_t consumer, phandle_t node,
+int pwm_get_by_ofw_propidx(device_t consumer, phandle_t node,
const char *prop_name, int idx, pwm_channel_t *channel);
-int
-pwm_get_by_ofw_idx(device_t consumer, phandle_t node, int idx,
+int pwm_get_by_ofw_idx(device_t consumer, phandle_t node, int idx,
pwm_channel_t *out_channel);
-int
-pwm_get_by_ofw_property(device_t consumer, phandle_t node,
+int pwm_get_by_ofw_property(device_t consumer, phandle_t node,
const char *prop_name, pwm_channel_t *out_channel);
-int
-pwm_get_by_ofw_name(device_t consumer, phandle_t node, const char *name,
+int pwm_get_by_ofw_name(device_t consumer, phandle_t node, const char *name,
pwm_channel_t *out_channel);
#endif /* _PWMBUS_H_ */