From patchwork Thu Jul 28 17:13:56 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Edward Cree X-Patchwork-Id: 653830 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 3s0f6Z4W18z9t1S for ; Fri, 29 Jul 2016 03:31:34 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1161013AbcG1Rbd (ORCPT ); Thu, 28 Jul 2016 13:31:33 -0400 Received: from nbfkord-smmo02.seg.att.com ([209.65.160.78]:25437 "EHLO nbfkord-smmo02.seg.att.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1161010AbcG1Rbc (ORCPT ); Thu, 28 Jul 2016 13:31:32 -0400 X-Greylist: delayed 558 seconds by postgrey-1.27 at vger.kernel.org; Thu, 28 Jul 2016 13:31:32 EDT Received: from unknown [193.34.186.16] (EHLO nbfkord-smmo02.seg.att.com) by nbfkord-smmo02.seg.att.com(mxl_mta-7.2.4-7) with ESMTP id 4714a975.2b5d64666940.266572.00-2482.853656.nbfkord-smmo02.seg.att.com (envelope-from ); Thu, 28 Jul 2016 17:31:32 +0000 (UTC) X-MXL-Hash: 579a41745fa5849c-586d28709a603a46e9edc9a02a1499057dd2c5be Received: from unknown [193.34.186.16] by nbfkord-smmo02.seg.att.com(mxl_mta-7.2.4-7) with SMTP id 54f3a975.0.265553.00-2279.850746.nbfkord-smmo02.seg.att.com (envelope-from ); Thu, 28 Jul 2016 17:22:14 +0000 (UTC) X-MXL-Hash: 579a3f467cf78168-aaec2a268ff4dd18a91c2b2e1814ec41a8f793e1 Received: from ec-desktop.uk.solarflarecom.com (10.17.20.45) by ukex01.SolarFlarecom.com (10.17.10.4) with Microsoft SMTP Server (TLS) id 15.0.1044.25; Thu, 28 Jul 2016 18:13:59 +0100 From: Edward Cree Subject: [PATCH] pci: quirks: Add ACS quirk to Solarflare SFC9220 To: , CC: Message-ID: Date: Thu, 28 Jul 2016 18:13:56 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.1.0 MIME-Version: 1.0 X-Originating-IP: [10.17.20.45] X-ClientProxiedBy: ocex03.SolarFlarecom.com (10.20.40.36) To ukex01.SolarFlarecom.com (10.17.10.4) X-TM-AS-Product-Ver: SMEX-11.0.0.1191-8.000.1202-22478.003 X-TM-AS-Result: No--4.567300-8.000000-31 X-TM-AS-User-Approved-Sender: No X-TM-AS-User-Blocked-Sender: No X-AnalysisOut: [v=2.1 cv=EqzU2HoA c=1 sm=1 tr=0 a=8P+NB+fYZDP74ap4g4d9Kw==] X-AnalysisOut: [:17 a=fVG4DLb5TBsA:10 a=IkcTkHD0fZMA:10 a=cAmyUtKerLwA:10 ] X-AnalysisOut: [a=zRKbQ67AAAAA:8 a=wXBXcYS4d6LMSpQe90oA:9 a=QEXdDO2ut3YA:1] X-AnalysisOut: [0 a=PA03WX8tBzeizutn5_OT:22] X-Spam: [F=0.2000000000; CM=0.500; S=0.200(2015072901)] X-MAIL-FROM: X-SOURCE-IP: [193.34.186.16] Sender: linux-pci-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org Device does not perform peer-to-peer between functions. Signed-off-by: Edward Cree --- drivers/pci/quirks.c | 1 + 1 file changed, 1 insertion(+) -- To unsubscribe from this list: send the line "unsubscribe linux-pci" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c index b69321c..37ff015 100644 --- a/drivers/pci/quirks.c +++ b/drivers/pci/quirks.c @@ -4095,6 +4095,7 @@ static const struct pci_dev_acs_enabled { { PCI_VENDOR_ID_AMD, 0x7809, pci_quirk_amd_sb_acs }, { PCI_VENDOR_ID_SOLARFLARE, 0x0903, pci_quirk_mf_endpoint_acs }, { PCI_VENDOR_ID_SOLARFLARE, 0x0923, pci_quirk_mf_endpoint_acs }, + { PCI_VENDOR_ID_SOLARFLARE, 0x0A03, pci_quirk_mf_endpoint_acs }, { PCI_VENDOR_ID_INTEL, 0x10C6, pci_quirk_mf_endpoint_acs }, { PCI_VENDOR_ID_INTEL, 0x10DB, pci_quirk_mf_endpoint_acs }, { PCI_VENDOR_ID_INTEL, 0x10DD, pci_quirk_mf_endpoint_acs },