Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 4 Sep 2016 01:25:46 +0000 (UTC)
From:      "Landon J. Fuller" <landonf@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r305373 - head/sys/dev/bhnd/siba
Message-ID:  <201609040125.u841PkJH041724@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: landonf
Date: Sun Sep  4 01:25:46 2016
New Revision: 305373
URL: https://svnweb.freebsd.org/changeset/base/305373

Log:
  siba(4): Add missing bhnd_device/bhnd_device_quirk table terminator entries.
  
  This resulted in an over-read on siba chipsets that failed to match the
  existing entries.
  
  Approved by:	adrian (mentor, implicit)

Modified:
  head/sys/dev/bhnd/siba/siba_bhndb.c

Modified: head/sys/dev/bhnd/siba/siba_bhndb.c
==============================================================================
--- head/sys/dev/bhnd/siba/siba_bhndb.c	Sun Sep  4 01:17:16 2016	(r305372)
+++ head/sys/dev/bhnd/siba/siba_bhndb.c	Sun Sep  4 01:25:46 2016	(r305373)
@@ -71,10 +71,12 @@ enum {
 static struct bhnd_device_quirk bridge_quirks[] = {
 	BHND_CHIP_QUIRK(4311, HWREV_EQ(2), SIBA_QUIRK_PCIE_D11_SB_TIMEOUT),
 	BHND_CHIP_QUIRK(4312, HWREV_EQ(0), SIBA_QUIRK_PCIE_D11_SB_TIMEOUT),
+	BHND_DEVICE_QUIRK_END
 };
 
 static struct bhnd_device bridge_devs[] = {
 	BHND_DEVICE(BCM, PCI, NULL, bridge_quirks),
+	BHND_DEVICE_END
 };
 
 static int



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