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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3C0F6C433F5 for ; Tue, 2 Nov 2021 19:45:53 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 1C21960F58 for ; Tue, 2 Nov 2021 19:45:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229844AbhKBTs1 (ORCPT ); Tue, 2 Nov 2021 15:48:27 -0400 Received: from mail.kernel.org ([198.145.29.99]:33334 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229813AbhKBTs1 (ORCPT ); Tue, 2 Nov 2021 15:48:27 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 7482F60F45; Tue, 2 Nov 2021 19:45:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1635882351; bh=BaKa+LRMR1Qg9okZxOXYMQ7K/FG4UI/5H64nxaY8350=; h=Date:From:To:Cc:Subject:In-Reply-To:From; b=Mj0fZK3yAu91rG8g9nUh0Z4sg4CuWhvNj32HbeAaZIoHeVz6Wj/CzKyC6Zgse/hCi DdX7TSfYG0pU/0XhD6r+QtTFYsmHRWTHD63Wa9w3lCXKCrNdvzhTHjtJ4GB6B4cJvJ 3uHkIFnDhcsHPu8sRMjV5IpT0l8klr1f/1T3tfIAWfDoS//idbzsBTxc+NiZ89cszX Cs9b4+9JxyW9mVojf7QZ4JbBWCnF8twhzZCGrwxTPKQsYkLo9X5t/OBA6ZRhsI+Bky wzrRFiugy34UT9Pj4uLRNa7jn6voKJMpjxYEnOvCqkoENUZgjMJJJ4pVL+Tb1jCzcu +QIEjfT4mJheg== Date: Tue, 2 Nov 2021 14:45:50 -0500 From: Bjorn Helgaas To: Krzysztof =?utf-8?Q?Wilczy=C5=84ski?= Cc: Bjorn Helgaas , Lorenzo Pieralisi , Rob Herring , Jonathan Derrick , Nirmal Patel , linux-pci@vger.kernel.org Subject: Re: [PATCH 1/2] PCI: vmd: Use preferred header files linux/device.h and linux/msi.h Message-ID: <20211102194550.GA637938@bhelgaas> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20211013003145.1107148-1-kw@linux.com> Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org On Wed, Oct 13, 2021 at 12:31:44AM +0000, Krzysztof Wilczyński wrote: > Use the preferred generic header files linux/device.h and linux/msi.h > that already include the corresponding asm/device.h and asm/msi.h files, > especially where the headers files linux/msi.h and asm/msi.h where both > included. > > Signed-off-by: Krzysztof Wilczyński Applied both to pci/misc for v5.16, thanks! > --- > drivers/pci/controller/vmd.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/drivers/pci/controller/vmd.c b/drivers/pci/controller/vmd.c > index a5987e52700e..9609eb911349 100644 > --- a/drivers/pci/controller/vmd.c > +++ b/drivers/pci/controller/vmd.c > @@ -9,6 +9,7 @@ > #include > #include > #include > +#include > #include > #include > #include > @@ -18,8 +19,6 @@ > #include > > #include > -#include > -#include > > #define VMD_CFGBAR 0 > #define VMD_MEMBAR1 2 > -- > 2.33.0 >