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=-7.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS 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 10043C2BA80 for ; Wed, 8 Apr 2020 23:53:31 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id D156520A8B for ; Wed, 8 Apr 2020 23:53:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1586390010; bh=7zViGsXDSmvWLZedluQ728hyvtvtBvOJlVvSpmYzI4U=; h=Date:From:To:Cc:Subject:In-Reply-To:List-ID:From; b=eMdUgJEj5GtyB4AQGazE5HyKYVIDDlc/SwAz3dp58S+fvXu49EG8Qy8udwq7TZ5OE rMxWymOo5loVXKZkaa50FTVEEGp9awb7S3EVqM0wq3XOS6sHu9gszRkteC199XIwNp DSRza+CuJJCwQkV82GZXsrgAKLDfmP9Gd0KFT5+M= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726523AbgDHXx0 (ORCPT ); Wed, 8 Apr 2020 19:53:26 -0400 Received: from mail.kernel.org ([198.145.29.99]:44064 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726510AbgDHXx0 (ORCPT ); Wed, 8 Apr 2020 19:53:26 -0400 Received: from localhost (mobile-166-175-188-68.mycingular.net [166.175.188.68]) (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 18DB12084D; Wed, 8 Apr 2020 23:53:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1586390006; bh=7zViGsXDSmvWLZedluQ728hyvtvtBvOJlVvSpmYzI4U=; h=Date:From:To:Cc:Subject:In-Reply-To:From; b=kR1mYAhYYGarx3rHMJcWGOWjTLiVhOXOrxfrjoRGT4/N6DXdR2o8jai7AuQOCw/th fE4n3O77v2CZTPeTyA3RZ65uJLSmqKOPqKrZ6DJwDxQtckCcKn9cCDoDsNG/GdNSwo tUKRRoOhPOTdwctGauWVqv2NvNRqLUvF75O/Ftr8= Date: Wed, 8 Apr 2020 18:53:24 -0500 From: Bjorn Helgaas To: Lad Prabhakar Cc: Yoshihiro Shimoda , Lorenzo Pieralisi , Rob Herring , Andrew Murray , Kishon Vijay Abraham I , Marek Vasut , Gustavo Pimentel , Jingoo Han , Shawn Lin , Tom Joseph , Heiko Stuebner , Geert Uytterhoeven , linux-pci@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-renesas-soc@vger.kernel.org, Chris Paterson , linux-rockchip@lists.infradead.org, Lad Prabhakar Subject: Re: [PATCH v7 7/8] PCI: Add Renesas R8A774C0 device ID Message-ID: <20200408235324.GA153524@google.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1586360280-10956-8-git-send-email-prabhakar.mahadev-lad.rj@bp.renesas.com> Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On Wed, Apr 08, 2020 at 04:37:59PM +0100, Lad Prabhakar wrote: > Add R8A774C0 device ID so that this can be used by > pci_endpoint_test driver. > > Signed-off-by: Lad Prabhakar > Reviewed-by: Yoshihiro Shimoda > --- > include/linux/pci_ids.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h > index 1dfc4e1dcb94..9e957c18abeb 100644 > --- a/include/linux/pci_ids.h > +++ b/include/linux/pci_ids.h > @@ -2460,6 +2460,7 @@ > #define PCI_DEVICE_ID_RENESAS_SH7763 0x0004 > #define PCI_DEVICE_ID_RENESAS_SH7785 0x0007 > #define PCI_DEVICE_ID_RENESAS_SH7786 0x0010 > +#define PCI_DEVICE_ID_RENESAS_R8A774C0 0x002d We don't add device IDs here anymore unless they're used in more than one place (see the comment at the top of the file). This series doesn't use it at all, so please move this patch to the series that adds multiple uses of this ID. > #define PCI_VENDOR_ID_SOLARFLARE 0x1924 > #define PCI_DEVICE_ID_SOLARFLARE_SFC4000A_0 0x0703 > -- > 2.20.1 >