Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=B/SQ1IJw; dkim=fail reason="signature verification failed" (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=Mv+cNONy Received: by mail.netbsd.org (Postfix, from userid 605) id 4D49D84E62; Wed, 17 Apr 2024 16:23:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1713370990; bh=pLhwQ+35J4LmLkJ4rTAqNtZDcJvqhfxZVkYdz4FeNIM=; h=Date:From:Subject:To:List-Id:Reply-To:List-Unsubscribe; b=B/SQ1IJwgd99/f1Ni5ewVh0Hz8AFjTFGSuBJ/GsB/jH9EFCE42wUOv3av9+jaS16E TsEoPSQV36xioOoQPh/qKu8oPF3m0B2xE57mlWe+UieDPntIX7vOXTZ3CenR1p6cbt YeNaAzema9WAJCleC4H6a5XGJwf5t7XBvJxuXyOc= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 30C7984E6B for ; Wed, 17 Apr 2024 16:23:09 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id QZsAQVB89BFw for ; Wed, 17 Apr 2024 16:23:08 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id AF63D84CD5 for ; Wed, 17 Apr 2024 16:23:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1713370988; bh=pLhwQ+35J4LmLkJ4rTAqNtZDcJvqhfxZVkYdz4FeNIM=; h=Date:From:Subject:To:Reply-To; b=Mv+cNONya1oSySsZxSsyruBd7Wir6U7q9mCwk3lLNXvMy+4MQaS1zOvnXji0qSfzN Z6u27/ukt1hkoj1+wtyCQ3T+g9g0Ilfo5CCZehr94QDvQRke3BH0DCA6ckPJ6Fa6+L WQs0SXtZXLFjyHoFvar+CBo1g3jrpwGUda/UlOCU= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9F483FA2C; Wed, 17 Apr 2024 16:23:08 +0000 (UTC) Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" MIME-Version: 1.0 Date: Wed, 17 Apr 2024 16:23:08 +0000 From: "Martin Husemann" Subject: CVS commit: [netbsd-10] src/sys/dev/pci To: source-changes@NetBSD.org X-Mailer: log_accum Message-Id: <20240417162308.9F483FA2C@cvs.NetBSD.org> Sender: source-changes-owner@NetBSD.org List-Id: Precedence: bulk Reply-To: source-changes-d@NetBSD.org Mail-Reply-To: "Martin Husemann" Mail-Followup-To: source-changes-d@NetBSD.org List-Unsubscribe: Module Name: src Committed By: martin Date: Wed Apr 17 16:23:08 UTC 2024 Modified Files: src/sys/dev/pci [netbsd-10]: if_iwn.c Log Message: Pull up following revision(s) (requested by riastradh in ticket #653): sys/dev/pci/if_iwn.c: revision 1.100 if_iwn.c: pick up proper firmware for Centrino Wireless-N 130 Both variants should use iwlwifi-6000g2b-6 not iwlwifi-6000g2a-6. (It seems only two specific product variants use iwlwifi-6000g2a-6. We could simplify by reversing the sense of the test, as OpenBSD does, but it doesn't seem to matter much, as what we now match seems to be the full gamut possible, so the simpler diff was chosen here.) Addresses PR kern/58105 from wandrien.dev%gmail.com@localhost, with the PCI_PRODUCT_INTEL_WIFI_LINK_130_1 match tested by the reporter. Code inspection of the FreeBSD driver indicates we should safely be able to match PCI_PRODUCT_INTEL_WIFI_LINK_130_2 also. To generate a diff of this commit: cvs rdiff -u -r1.99 -r1.99.4.1 src/sys/dev/pci/if_iwn.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.