svn commit: r264801 - head/sys/dev/usb/serial

Kevin Lo kevlo at FreeBSD.org
Wed Apr 23 05:53:03 UTC 2014


Author: kevlo
Date: Wed Apr 23 05:53:03 2014
New Revision: 264801
URL: http://svnweb.freebsd.org/changeset/base/264801

Log:
  Add a missing break.

Modified:
  head/sys/dev/usb/serial/uftdi.c

Modified: head/sys/dev/usb/serial/uftdi.c
==============================================================================
--- head/sys/dev/usb/serial/uftdi.c	Wed Apr 23 05:50:55 2014	(r264800)
+++ head/sys/dev/usb/serial/uftdi.c	Wed Apr 23 05:53:03 2014	(r264801)
@@ -1770,6 +1770,7 @@ uftdi_ioctl(struct ucom_softc *ucom, uin
 	case UFTDIIOC_SET_EVENT_CHAR:
 		err = uftdi_set_event_char(ucom, *(int *)data);
 		break;
+		break;
 	case UFTDIIOC_GET_HWREV:
 		*(int *)data = sc->sc_bcdDevice;
 		err = 0;


More information about the svn-src-all mailing list