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 Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id B74A1C6FD1F for ; Tue, 26 Mar 2024 12:58:39 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 1F60710EF61; Tue, 26 Mar 2024 12:58:39 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (1024-bit key; unprotected) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="tB1ZpUTW"; dkim-atps=neutral Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) by gabe.freedesktop.org (Postfix) with ESMTPS id 6407710E1D3 for ; Tue, 26 Mar 2024 08:28:10 +0000 (UTC) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by dfw.source.kernel.org (Postfix) with ESMTP id 5AAC661281; Tue, 26 Mar 2024 08:28:09 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 637A1C43390; Tue, 26 Mar 2024 08:28:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1711441689; bh=z8NWPUYJmsGr2kxmH7x6UVeDQ82FujFPnCIU10rlyEk=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=tB1ZpUTW2ejyYSpF1sL5KF9xdmawbP/bYgHV0o8zoCnWbYB+zWxgVfZC9VmmsDxRe 9Li/QYAVZZ9cYAApZZOLdhuOLhHI/0HdpUGvFYKlCdmhgYPyyoiFNzVBKPNxFotoDc dZFP5wMuDVQ0yHno98bexW+DaBUriDW9d2uLr37A= Date: Tue, 26 Mar 2024 09:28:06 +0100 From: Greg Kroah-Hartman To: Damien Le Moal Cc: linux-pci@vger.kernel.org, Bjorn Helgaas , Manivannan Sadhasivami , linux-scsi@vger.kernel.org, "Martin K . Petersen" , Jaroslav Kysela , linux-sound@vger.kernel.org, linux-usb@vger.kernel.org, linux-serial@vger.kernel.org, Hans de Goede , platform-driver-x86@vger.kernel.org, ntb@lists.linux.dev, Lee Jones , David Airlie , amd-gfx@lists.freedesktop.org, Jason Gunthorpe , linux-rdma@vger.kernel.org, "David S . Miller" , Eric Dumazet , netdev@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 06/28] tty: 8250_pci: Use PCI_IRQ_INTX Message-ID: <2024032658-rescuer-dial-49da@gregkh> References: <20240325070944.3600338-1-dlemoal@kernel.org> <20240325070944.3600338-7-dlemoal@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240325070944.3600338-7-dlemoal@kernel.org> X-Mailman-Approved-At: Tue, 26 Mar 2024 12:58:37 +0000 X-BeenThere: amd-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion list for AMD gfx List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: amd-gfx-bounces@lists.freedesktop.org Sender: "amd-gfx" On Mon, Mar 25, 2024 at 04:09:17PM +0900, Damien Le Moal wrote: > Use the macro PCI_IRQ_INTX instead of the deprecated PCI_IRQ_LEGACY > macro. > > Signed-off-by: Damien Le Moal Acked-by: Greg Kroah-Hartman