From owner-cvs-all@FreeBSD.ORG Thu May 22 21:15:35 2008 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9C4181065677 for ; Thu, 22 May 2008 21:15:35 +0000 (UTC) (envelope-from pawel.worach@gmail.com) Received: from rv-out-0506.google.com (rv-out-0506.google.com [209.85.198.227]) by mx1.freebsd.org (Postfix) with ESMTP id 6BF378FC25 for ; Thu, 22 May 2008 21:15:35 +0000 (UTC) (envelope-from pawel.worach@gmail.com) Received: by rv-out-0506.google.com with SMTP id b25so347768rvf.43 for ; Thu, 22 May 2008 14:15:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=Ufg8DQFEXTnPa+3P5gw7L5ys9s4zcRsmOWMh6YlaGXY=; b=XiTUY7sMIBsWEFoAVoOsOaG9l26MRXVq/NLPpQ+0YwrKV0QzveYJmk/Z1Vg7P6sq+Cfil0z6KZExRO0uksn7i0FQAOl40kAaF3Lv3nBs5OftPZ5EBJSRe8cu3ahtrboGtsPTVTxhUyxnnpNZw/gtlQcKohBmCvX2oZQy5Y8/Y2I= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=c6vLhyDVPAotLdrvg6aGeZevPWk3iMNIyWgzWkpsjRop4DOKkfIp/tQhToQ7G3/vsMiXebiNf0L8qL234mRtTTz2B4H9wHcLBw26e0K9xzJOm5WaiJGB9vDgXUIPuwdRf0L8Ib3n4YvYq9v+bp8+G1cAL11pa6ieGK2UE4y2cGo= Received: by 10.141.122.20 with SMTP id z20mr244683rvm.239.1211489402579; Thu, 22 May 2008 13:50:02 -0700 (PDT) Received: by 10.141.20.18 with HTTP; Thu, 22 May 2008 13:50:02 -0700 (PDT) Message-ID: Date: Thu, 22 May 2008 22:50:02 +0200 From: "Pawel Worach" To: "Sam Leffler" In-Reply-To: <200804292136.m3TLaHI5045311@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200804292136.m3TLaHI5045311@repoman.freebsd.org> Cc: cvs-src@freebsd.org, src-committers@freebsd.org, cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/amd64/conf NOTES src/sys/conf files src/sys/contrib/dev/iwn LICENSE iwlwifi-4965-4.44.17.fw.uu src/sys/dev/iwn if_iwn.c if_iwnreg.h if_iwnvar.h src/sys/i386/conf NOTES src/sys/modules Makefile src/sys/modules/iwn Makefile ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 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: Thu, 22 May 2008 21:15:35 -0000 On Tue, Apr 29, 2008 at 11:36 PM, Sam Leffler wrote: > sam 2008-04-29 21:36:17 UTC > > FreeBSD src repository > > Added files: > sys/modules/iwn Makefile > Log: > Intel 4965 wireless driver (derived from openbsd driver of the same name) > If using the module on a kernel without WITNESS the module doesn't run-time link with: link_elf_obj: symbol _mtx_assert undefined Other than that, thanks a lot, the driver works fine! Fix? --- /sys/modules/iwn/Makefile 2008-04-29 23:36:17.000000000 +0200 +++ Makefile 2008-05-22 22:45:22.000000000 +0200 @@ -4,5 +4,5 @@ KMOD = if_iwn SRCS = if_iwn.c opt_bdg.h device_if.h bus_if.h pci_if.h -CFLAGS += -g -DWITNESS -DINVARIANT_SUPPORT -DINVARIANTS -I${.CURDIR}/../../ +CFLAGS += -g -I${.CURDIR}/../../ .include Regards -- Pawel