svn commit: r349081 - head/sys/dev/pwm

Ian Lepore ian at FreeBSD.org
Sat Jun 15 20:54:34 UTC 2019


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_ */


More information about the svn-src-head mailing list