Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 13 Apr 2003 12:01:30 -0700 (PDT)
From:      Maksim Yevmenkin <m_evmenkin@yahoo.com>
To:        mobile@freebsd.org, current@freebsd.org
Cc:        Pav Lucistnik <pav@oook.cz>
Subject:   [PATCH] April Bluetooth stack does not build under 5.0-RELEASE
Message-ID:  <20030413190130.53345.qmail@web40302.mail.yahoo.com>
In-Reply-To: <3E99B17E.1020001@cw.com>

index | next in thread | previous in thread | raw e-mail

[-- Attachment #1 --]
Dear Hackers,

Please find attached patch for the ng_ubt(4) driver. This patch fixes
stupid typo error in 2003/04/07 snapshot. 

Symptoms: 

link_elf: symbol usbd_intr_transfer undefined
KLD file ng_ubt.ko - could not finalize loading

Solution:

Apply the attached patch, recompile and reinstall the ng_ubt(4) module.

Impact:

Minimal. This patch only affects new device nodes interface.

Many thanks to Pav Lucistnik <pav@oook.cz> who reported this problem.
I'm sorry about this.

max

__________________________________________________
Do you Yahoo!?
Yahoo! Tax Center - File online, calculators, forms, and more
http://tax.yahoo.com
[-- Attachment #2 --]
--- ng_ubt.c.orig	Sun Apr 13 11:44:50 2003
+++ ng_ubt.c	Sun Apr 13 11:48:31 2003
@@ -2460,7 +2460,7 @@
 		if (error != 0)
 			break;
 
-		status = usbd_intr_transfer(sc->sc_bulk_out_xfer,
+		status = usbd_bulk_transfer(sc->sc_bulk_out_xfer,
 				sc->sc_bulk_out_pipe, 0, USBD_DEFAULT_TIMEOUT,
 				buf, &n,"ubtwr");
 		switch (status) {
help

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