Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 13 Sep 2010 20:11:18 +0000 (UTC)
From:      Weongyo Jeong <weongyo@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-user@freebsd.org
Subject:   svn commit: r212582 - user/weongyo/usb/sys/dev/usb/serial
Message-ID:  <201009132011.o8DKBIUG029582@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: weongyo
Date: Mon Sep 13 20:11:18 2010
New Revision: 212582
URL: http://svn.freebsd.org/changeset/base/212582

Log:
  style(9)

Modified:
  user/weongyo/usb/sys/dev/usb/serial/usb_serial.h

Modified: user/weongyo/usb/sys/dev/usb/serial/usb_serial.h
==============================================================================
--- user/weongyo/usb/sys/dev/usb/serial/usb_serial.h	Mon Sep 13 20:06:52 2010	(r212581)
+++ user/weongyo/usb/sys/dev/usb/serial/usb_serial.h	Mon Sep 13 20:11:18 2010	(r212582)
@@ -89,7 +89,8 @@ struct thread;
  * while it is open!
  */
 struct ucom_callback {
-	void    (*ucom_cfg_get_status) (struct ucom_softc *, uint8_t *plsr, uint8_t *pmsr);
+	void    (*ucom_cfg_get_status) (struct ucom_softc *, uint8_t *,
+		    uint8_t *);
 	void    (*ucom_cfg_set_dtr) (struct ucom_softc *, uint8_t);
 	void    (*ucom_cfg_set_rts) (struct ucom_softc *, uint8_t);
 	void    (*ucom_cfg_set_break) (struct ucom_softc *, uint8_t);
@@ -99,12 +100,14 @@ struct ucom_callback {
 	void    (*ucom_cfg_close) (struct ucom_softc *);
 	int     (*ucom_pre_open) (struct ucom_softc *);
 	int     (*ucom_pre_param) (struct ucom_softc *, struct termios *);
-	int     (*ucom_ioctl) (struct ucom_softc *, uint32_t, caddr_t, int, struct thread *);
+	int     (*ucom_ioctl) (struct ucom_softc *, uint32_t, caddr_t, int,
+		    struct thread *);
 	void    (*ucom_start_read) (struct ucom_softc *);
 	void    (*ucom_stop_read) (struct ucom_softc *);
 	void    (*ucom_start_write) (struct ucom_softc *);
 	void    (*ucom_stop_write) (struct ucom_softc *);
-	void    (*ucom_tty_name) (struct ucom_softc *, char *pbuf, uint16_t buflen, uint16_t local_subunit);
+	void    (*ucom_tty_name) (struct ucom_softc *, char *, uint16_t,
+		    uint16_t);
 	void    (*ucom_poll) (struct ucom_softc *);
 };
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201009132011.o8DKBIUG029582>