Date: Sat, 15 Jun 2019 20:54:34 +0000 (UTC) From: Ian Lepore <ian@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r349081 - head/sys/dev/pwm Message-ID: <201906152054.x5FKsYUS052756@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ian Date: Sat Jun 15 20:54:33 2019 New Revision: 349081 URL: https://svnweb.freebsd.org/changeset/base/349081 Log: Unwrap prototype lines so that return type and function name are on the same line. No functional changes. Modified: head/sys/dev/pwm/pwmbus.h Modified: head/sys/dev/pwm/pwmbus.h ============================================================================== --- head/sys/dev/pwm/pwmbus.h Sat Jun 15 20:53:26 2019 (r349080) +++ head/sys/dev/pwm/pwmbus.h Sat Jun 15 20:54:33 2019 (r349081) @@ -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_ */
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201906152054.x5FKsYUS052756>