From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 339ED4431 for ; Wed, 15 Mar 2023 12:16:20 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id AB575C433D2; Wed, 15 Mar 2023 12:16:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1678882580; bh=TNRsfsq+ON3+lKbO5+C/vXgI9p1AOsFvWEKc0YjI+vE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=HwBLayG4IBwlwh9ecmqRmVIGnwT0lnqLHbKtWN66p4cvYWNnmH/aGq2i8BdHCjMjO SgqtTD82GLYd/A7yEHjx4o+kGFh/FTTiobvwpOFo6M3tZB5QG2i5I9RkNkNgZq3uXL rNZ3YHflwNuhThcuwRK2+XZOC81hrk6NRRBQ/2ak= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Alvaro Karsz , Bjorn Helgaas , "Michael S. Tsirkin" , Sasha Levin Subject: [PATCH 4.19 32/39] PCI: Add SolidRun vendor ID Date: Wed, 15 Mar 2023 13:12:46 +0100 Message-Id: <20230315115722.422574031@linuxfoundation.org> X-Mailer: git-send-email 2.40.0 In-Reply-To: <20230315115721.234756306@linuxfoundation.org> References: <20230315115721.234756306@linuxfoundation.org> User-Agent: quilt/0.67 Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit From: Alvaro Karsz [ Upstream commit db6c4dee4c104f50ed163af71c53bfdb878a8318 ] Add SolidRun vendor ID to pci_ids.h The vendor ID is used in 2 different source files, the SNET vDPA driver and PCI quirks. Signed-off-by: Alvaro Karsz Acked-by: Bjorn Helgaas Message-Id: <20230110165638.123745-2-alvaro.karsz@solid-run.com> Signed-off-by: Michael S. Tsirkin Signed-off-by: Sasha Levin --- include/linux/pci_ids.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h index 1658e9f8d8032..78c1cd4dfdc07 100644 --- a/include/linux/pci_ids.h +++ b/include/linux/pci_ids.h @@ -3097,6 +3097,8 @@ #define PCI_VENDOR_ID_3COM_2 0xa727 +#define PCI_VENDOR_ID_SOLIDRUN 0xd063 + #define PCI_VENDOR_ID_DIGIUM 0xd161 #define PCI_DEVICE_ID_DIGIUM_HFC4S 0xb410 -- 2.39.2