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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id E6713C433FE for ; Thu, 9 Dec 2021 16:07:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S236864AbhLIQK5 (ORCPT ); Thu, 9 Dec 2021 11:10:57 -0500 Received: from Galois.linutronix.de ([193.142.43.55]:40094 "EHLO galois.linutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S240831AbhLIQKk (ORCPT ); Thu, 9 Dec 2021 11:10:40 -0500 Date: Thu, 09 Dec 2021 16:07:04 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1639066025; h=from:from:sender:sender:reply-to: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=iWvxX7TdK56u7tL9I/yYMlaUUDCtn/cWEXSuc2tGEYk=; b=GtZqi1/TS6PIXuO8/D+01bcQkLDK03JtrBm6Vint6ZFioV/wdFvB8sGc5Yazbljc7wkzZJ j/9jTfUDQTEdekHYhUktrKN2YsWqCsNPc/BcmrpBTSnGhkg72XKuSWhun8W/HrCQPxcJF2 UDQH+uHBQLEGMvaKvhxZGumqcGTiz02HmCVBM28cuqt4JXaz2Q8ceP7digJb+xo81muTSp NI4Yu4RIntQSTquAPtU2Yrr2EUoF8hM6dO3dsKW5GiVrxoIGiEvlzf/Pv6ESBH3fQg1vVm xF2IihHLoFtX9GfLbajOgt97ms/vhIhVL06Ym8s4ZYS+kcwC+X1dirfXALNfPQ== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1639066025; h=from:from:sender:sender:reply-to: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=iWvxX7TdK56u7tL9I/yYMlaUUDCtn/cWEXSuc2tGEYk=; b=wQVdlqYFmz29lPxxr6nhB593Xni6Lc2UXUXAYDsp8x+9jDb87yGgl1ACmt1IdG+iRVuqP8 3ZgxPDkNToCiHlCw== From: "tip-bot2 for Thomas Gleixner" Sender: tip-bot2@linutronix.de Reply-to: linux-kernel@vger.kernel.org To: linux-tip-commits@vger.kernel.org Subject: [tip: irq/msi] PCI/MSI: Cleanup include zoo Cc: Thomas Gleixner , Juergen Gross , Jason Gunthorpe , Bjorn Helgaas , x86@kernel.org, linux-kernel@vger.kernel.org In-Reply-To: <20211206210224.539281124@linutronix.de> References: <20211206210224.539281124@linutronix.de> MIME-Version: 1.0 Message-ID: <163906602485.11128.13473051346006830522.tip-bot2@tip-bot2> Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The following commit has been merged into the irq/msi branch of tip: Commit-ID: 29a03ada4a007067d5427a6a1b7ba1dc7566ea2e Gitweb: https://git.kernel.org/tip/29a03ada4a007067d5427a6a1b7ba1dc7566ea2e Author: Thomas Gleixner AuthorDate: Mon, 06 Dec 2021 23:27:44 +01:00 Committer: Thomas Gleixner CommitterDate: Thu, 09 Dec 2021 11:52:21 +01:00 PCI/MSI: Cleanup include zoo Get rid of the pile of unneeded includes which accumulated over time. Signed-off-by: Thomas Gleixner Tested-by: Juergen Gross Reviewed-by: Jason Gunthorpe Acked-by: Bjorn Helgaas Link: https://lore.kernel.org/r/20211206210224.539281124@linutronix.de --- drivers/pci/msi.c | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/drivers/pci/msi.c b/drivers/pci/msi.c index 8260b06..a76fcf4 100644 --- a/drivers/pci/msi.c +++ b/drivers/pci/msi.c @@ -7,22 +7,14 @@ * Copyright (C) 2016 Christoph Hellwig. */ +#include #include -#include -#include -#include #include -#include -#include -#include -#include -#include -#include -#include -#include -#include +#include #include +#include #include +#include #include "pci.h"