From owner-cvs-all@FreeBSD.ORG Tue Mar 1 08:01:23 2005 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7604F16A4CF; Tue, 1 Mar 2005 08:01:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 533D243D54; Tue, 1 Mar 2005 08:01:23 +0000 (GMT) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j2181NId017686; Tue, 1 Mar 2005 08:01:23 GMT (envelope-from sobomax@repoman.freebsd.org) Received: (from sobomax@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j2181NtB017685; Tue, 1 Mar 2005 08:01:23 GMT (envelope-from sobomax) Message-Id: <200503010801.j2181NtB017685@repoman.freebsd.org> From: Maxim Sobolev Date: Tue, 1 Mar 2005 08:01:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb usb_subr.c usbdi.c usbdi.h usbdi_util.c usbdi_util.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Mar 2005 08:01:23 -0000 sobomax 2005-03-01 08:01:22 UTC FreeBSD src repository Modified files: sys/dev/usb usb_subr.c usbdi.c usbdi.h usbdi_util.c usbdi_util.h Log: Merge from NetBSD. o usb_subr.c, add delta 1.119: Move usb_get_string() and make it public. o usbdi.c, bring on par with 1.106, this includes: - Make an iterator abstraction for looping through all descriptors. - Whine about not being able to figure out default language if we are debugging. - Move usb_get_string() and make it public. o usbdi.h, bring on par with 1.64, this includes: - Make an iterator abstraction for looping through all descriptors. - Move usb_get_string() and make it public. o usbdi_util.c, bring on par with 1.42, this includes: - Add usbd_get_protocol(). - Use NULL instead of 0. - Fix (mostly harmless) typo. - Move utility routine from uirda.c to usbdi_util.c. o usbdi_util.h, bring on par with 1.31, this includes: - Add usbd_get_protocol(). - Move utility routine from uirda.c to usbdi_util.c. MFC after: 3 days Revision Changes Path 1.76 +9 -48 src/sys/dev/usb/usb_subr.c 1.91 +83 -1 src/sys/dev/usb/usbdi.c 1.56 +10 -0 src/sys/dev/usb/usbdi.h 1.34 +42 -6 src/sys/dev/usb/usbdi_util.c 1.19 +6 -1 src/sys/dev/usb/usbdi_util.h