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 5D0A3C433EF for ; Thu, 14 Oct 2021 18:05:25 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 39ED561167 for ; Thu, 14 Oct 2021 18:05:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233821AbhJNSH3 (ORCPT ); Thu, 14 Oct 2021 14:07:29 -0400 Received: from out1.migadu.com ([91.121.223.63]:61247 "EHLO out1.migadu.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233471AbhJNSH2 (ORCPT ); Thu, 14 Oct 2021 14:07:28 -0400 Message-ID: <4152471b-fdc9-5cfa-b72d-97f62fe4d282@linux.dev> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1634234722; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=IEmLw//Lj/QFJpBZ+ZGoCjcZ2/ZzcehH4/P8idSMT1U=; b=fkKyL41GzLdYjf3fP76BuKqQQ5UepaD3wmrmmSyq3UjI8OZo3pkkQqOctjLrinvav+ejIs ViwzC6dpng8Nl8kKKU6/HYwBVWChHF28CusB/whOS1JcA3ZjJ3naoP1GNyDhKsnQL7LAXE DWJFfS8//KZW60H3c7X47kmRfZvCWi0= Date: Thu, 14 Oct 2021 12:05:19 -0600 MIME-Version: 1.0 Subject: Re: [PATCH 1/2] PCI: vmd: Use preferred header files linux/device.h and linux/msi.h Content-Language: en-US To: =?UTF-8?Q?Krzysztof_Wilczy=c5=84ski?= , Bjorn Helgaas Cc: Lorenzo Pieralisi , Rob Herring , Nirmal Patel , linux-pci@vger.kernel.org References: <20211013003145.1107148-1-kw@linux.com> X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: Jonathan Derrick In-Reply-To: <20211013003145.1107148-1-kw@linux.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: jonathan.derrick@linux.dev Precedence: bulk List-ID: X-Mailing-List: linux-pci@vger.kernel.org On 10/12/2021 6:31 PM, 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 > --- > 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 > Reviewed-by: Jonathan Derrick