From patchwork Wed Jul 25 19:52:38 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bjorn Helgaas X-Patchwork-Id: 10544617 X-Patchwork-Delegate: johannes@sipsolutions.net Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id DB388112E for ; Wed, 25 Jul 2018 19:52:44 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id CC7982A3A2 for ; Wed, 25 Jul 2018 19:52:44 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id C04992AA6A; Wed, 25 Jul 2018 19:52:44 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.0 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI autolearn=unavailable version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 86E5F2AA81 for ; Wed, 25 Jul 2018 19:52:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731168AbeGYVFx (ORCPT ); Wed, 25 Jul 2018 17:05:53 -0400 Received: from mail.kernel.org ([198.145.29.99]:37534 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729335AbeGYVFw (ORCPT ); Wed, 25 Jul 2018 17:05:52 -0400 Received: from localhost (unknown [69.71.4.100]) (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 7170A20844; Wed, 25 Jul 2018 19:52:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1532548362; bh=2AFe3nR4upS0F4Fmb/VALXnGhQFpXBi7KRtZixJiBJ0=; h=Subject:From:To:Cc:Date:In-Reply-To:References:From; b=EebWs0fc798wYaYRPRWIGBPJONoKW69zXMa5YZEIFE4/AWc5ci+R7yDRdpp8A1ANz HX6t7eTqheQ3B/43HRMnqayyyu3gQ3Hk7phHPXCe2NsYj0EwU3AeOaYxMbAWpam/pn by+zWUfSmq3QSPzeNROUyl+EcQGaBHONBdKo07ZA= Subject: [PATCH v1 2/4] ath9k: Remove unnecessary include of From: Bjorn Helgaas To: linux-pci@vger.kernel.org Cc: Jeff Kirsher , "David S. Miller" , Kalle Valo , Johannes Berg , Emmanuel Grumbach , Luca Coelho , ath9k-devel@qca.qualcomm.com, linuxwifi@intel.com, intel-wired-lan@lists.osuosl.org, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, linux-wireless@vger.kernel.org Date: Wed, 25 Jul 2018 14:52:38 -0500 Message-ID: <153254835812.92573.3566522887325831923.stgit@bhelgaas-glaptop.roam.corp.google.com> In-Reply-To: <153254813164.92573.10755585465477668768.stgit@bhelgaas-glaptop.roam.corp.google.com> References: <153254813164.92573.10755585465477668768.stgit@bhelgaas-glaptop.roam.corp.google.com> User-Agent: StGit/0.18 MIME-Version: 1.0 Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP From: Bjorn Helgaas The ath9k driver doesn't need anything provided by pci-aspm.h, so remove the unnecessary include of it. Signed-off-by: Bjorn Helgaas Acked-by: Kalle Valo --- drivers/net/wireless/ath/ath9k/pci.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/net/wireless/ath/ath9k/pci.c b/drivers/net/wireless/ath/ath9k/pci.c index 645f0fbd9179..92b2dd396436 100644 --- a/drivers/net/wireless/ath/ath9k/pci.c +++ b/drivers/net/wireless/ath/ath9k/pci.c @@ -18,7 +18,6 @@ #include #include -#include #include #include "ath9k.h"