From owner-svn-src-head@FreeBSD.ORG Fri Dec 6 20:33:42 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A2275FA6; Fri, 6 Dec 2013 20:33:42 +0000 (UTC) Received: from olymp.kibab.com (olymp6.kibab.com [IPv6:2a01:4f8:160:84c1::2]) by mx1.freebsd.org (Postfix) with ESMTP id 63E131E82; Fri, 6 Dec 2013 20:33:42 +0000 (UTC) DKIM-Filter: OpenDKIM Filter v2.8.3 olymp.kibab.com 6186D3F717 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=bakulin.de; s=default; t=1386362020; bh=ie2Sh55GXIhHj4LbhEWjNfRQ7CNP3CkKNs33mJD/bVM=; h=Date:From:To:Subject:References:In-Reply-To; b=C9wuyStOL5V7cmNJE51B3NlDGi5VLCEr0maDWUHIhfWQqPtuIDBsAa/ebgvjWfoAY ogi6Wm4l+/bKJkoUKGlwZcn/NqAWEA2D48MFyv9EsNlDZzegfkX6UDCyiGPaXb4n9f dUVJ2MWI/pC8nQocCy6xwXY84/MQzR9yNuVEzaYg= Message-ID: <52A234A3.1040106@bakulin.de> Date: Fri, 06 Dec 2013 21:33:39 +0100 From: Ilya Bakulin MIME-Version: 1.0 To: Kevin Lo , src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: Re: svn commit: r259032 - in head: share/man/man4 sys/dev/usb sys/dev/usb/wlan References: <201312061526.rB6FQdxZ011500@svn.freebsd.org> In-Reply-To: <201312061526.rB6FQdxZ011500@svn.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Dec 2013 20:33:42 -0000 On 06.12.13, 16:26, Kevin Lo wrote: > Author: kevlo > Date: Fri Dec 6 15:26:39 2013 > New Revision: 259032 > URL: http://svnweb.freebsd.org/changeset/base/259032 > > Log: > Add support for the MediaTek/Ralink RT5572 chipset. > Committed over the TP-LINK TL-WDN3200 (RT5572) on amd64 with WPA. > > While here, add my copyright. > > Modified: > head/share/man/man4/run.4 > head/sys/dev/usb/usbdevs > head/sys/dev/usb/wlan/if_run.c > head/sys/dev/usb/wlan/if_runreg.h > head/sys/dev/usb/wlan/if_runvar.h This seems to break the build due to undeclared structure: ===> usb/run (all) --- if_run.o --- cc -O2 -pipe -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdinc -DHAVE_KERNEL_OPTION_HEADERS -include /stor0/jails/buildhost.kibab.com/usr/home/kibab/repos/freebsd-git/gs0/obj/i386.i386/stor0/jails/buildhost.kibab.com/usr/home/kibab/repos/freebsd-git/freebsd/sys/GS0/opt_global.h -I. -I@ -I@/contrib/altq -fno-common -g -I/stor0/jails/buildhost.kibab.com/usr/home/kibab/repos/freebsd-git/gs0/obj/i386.i386/stor0/jails/buildhost.kibab.com/usr/home/kibab/repos/freebsd-git/freebsd/sys/GS0 -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -std=iso9899:1999 -Qunused-arguments -fstack-protector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equality -c /stor0/jails/buildhost.kibab.com/usr/home/kibab/repos/freebsd-git/freebsd/sys/modules/usb/run/../../../dev/usb/wlan/if_run.c /stor0/jails/buildhost.kibab.com/usr/home/kibab/repos/freebsd-git/freebsd/sys/modules/usb/run/../../../dev/usb/wlan/if_run.c:3233:6: error: invalid application of 'sizeof' to an incomplete type 'struct rt2870_txwi' sizeof(struct rt2870_txwi)), rt2860_rates[ridx].rate, qid); ^ ~~~~~~~~~~~~~~~~~~~~ @/dev/usb/usb_debug.h:41:21: note: expanded from macro 'DPRINTFN' __FUNCTION__ ,##__VA_ARGS__); \ ^ /stor0/jails/buildhost.kibab.com/usr/home/kibab/repos/freebsd-git/freebsd/sys/modules/usb/run/../../../dev/usb/wlan/if_run.c:3233:20: note: forward declaration of 'struct rt2870_txwi' sizeof(struct rt2870_txwi)), rt2860_rates[ridx].rate, qid); ^ @/dev/usb/usb_debug.h:41:21: note: expanded from macro 'DPRINTFN' __FUNCTION__ ,##__VA_ARGS__); \ ^ 1 error generated. *** [if_run.o] Error code 1 -- Regards, Ilya Bakulin