From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id F2B87C433DF for ; Fri, 19 Jun 2020 16:14:53 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id CAAC1217A0 for ; Fri, 19 Jun 2020 16:14:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1592583293; bh=6DycDe6pY895+aUgPiVxo5UOjeo5K8tMQKoFqRyH7YI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=p86w9Dr8OuQ1uGIrXfu1LFigmLE5qPp+sSw4/qhBFz3fExF2RLMEKoeACtvtSxbbI +Wuyo5273vKRlXxALdRgSbh7cukTM2bz8SXIGnx/cEyyUXz6mUhsU6nBnA6tcghT39 G1Ujka8/Ov/OPRGL9aF4xCzJVYJKSKPxAXrvjtfU= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2394438AbgFSQOm (ORCPT ); Fri, 19 Jun 2020 12:14:42 -0400 Received: from mail.kernel.org ([198.145.29.99]:60700 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2390222AbgFSPDx (ORCPT ); Fri, 19 Jun 2020 11:03:53 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 75D7521941; Fri, 19 Jun 2020 15:03:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1592579034; bh=6DycDe6pY895+aUgPiVxo5UOjeo5K8tMQKoFqRyH7YI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=uPVJ3XTyUcxY5rytX0GHXHedO51AyWE4wP5sNZXAY6PnVDe045TNZAukGRT/VN7sW js1tC4LC3xNPBfjFBUJWr3s5WE4MDdHxCKRg7moDy7qr5Cmum4upfbOuG+tyWsPd5G KKvM0feKMH2Q5+cQL1WNxeRpeLBnvMVzHQ+vLoJY= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Jonathan Chocron , Lorenzo Pieralisi , Andrew Murray , Bjorn Helgaas , Sasha Levin Subject: [PATCH 4.19 220/267] PCI: Add Amazons Annapurna Labs vendor ID Date: Fri, 19 Jun 2020 16:33:25 +0200 Message-Id: <20200619141659.274298032@linuxfoundation.org> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20200619141648.840376470@linuxfoundation.org> References: <20200619141648.840376470@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Jonathan Chocron [ Upstream commit 4a36a60c34f42f75e8b4f8cd24fcfade26111334 ] Add Amazon's Annapurna Labs vendor ID to pci_ids.h. Signed-off-by: Jonathan Chocron Signed-off-by: Lorenzo Pieralisi Reviewed-by: Andrew Murray Acked-by: Bjorn Helgaas 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 3329387261df..b047b0af530d 100644 --- a/include/linux/pci_ids.h +++ b/include/linux/pci_ids.h @@ -2576,6 +2576,8 @@ #define PCI_VENDOR_ID_ASMEDIA 0x1b21 +#define PCI_VENDOR_ID_AMAZON_ANNAPURNA_LABS 0x1c36 + #define PCI_VENDOR_ID_CIRCUITCO 0x1cc8 #define PCI_SUBSYSTEM_ID_CIRCUITCO_MINNOWBOARD 0x0001 -- 2.25.1