linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1 0/4] PCI: Remove unnecessary includes of <linux/pci-aspm.h>
@ 2018-07-25 19:52 Bjorn Helgaas
  2018-07-25 19:52 ` [PATCH v1 1/4] igb: Remove unnecessary include " Bjorn Helgaas
                   ` (5 more replies)
  0 siblings, 6 replies; 12+ messages in thread
From: Bjorn Helgaas @ 2018-07-25 19:52 UTC (permalink / raw)
  To: linux-pci
  Cc: Jeff Kirsher, David S. Miller, Kalle Valo, Johannes Berg,
	Emmanuel Grumbach, Luca Coelho, ath9k-devel, linuxwifi,
	intel-wired-lan, netdev, linux-kernel, linux-wireless

Remove includes of <linux/pci-aspm.h> from files that don't need
it.  I'll apply all these via the PCI tree unless there's objection.

---

Bjorn Helgaas (4):
      igb: Remove unnecessary include of <linux/pci-aspm.h>
      ath9k: Remove unnecessary include of <linux/pci-aspm.h>
      iwlwifi: Remove unnecessary include of <linux/pci-aspm.h>
      PCI: Remove unnecessary include of <linux/pci-aspm.h>


 drivers/net/ethernet/intel/igb/igb_main.c     |    1 -
 drivers/net/wireless/ath/ath9k/pci.c          |    1 -
 drivers/net/wireless/intel/iwlwifi/pcie/drv.c |    1 -
 drivers/pci/pci-sysfs.c                       |    1 -
 drivers/pci/pci.c                             |    1 -
 drivers/pci/probe.c                           |    1 -
 drivers/pci/remove.c                          |    1 -
 7 files changed, 7 deletions(-)

^ permalink raw reply	[flat|nested] 12+ messages in thread

* [PATCH v1 1/4] igb: Remove unnecessary include of <linux/pci-aspm.h>
  2018-07-25 19:52 [PATCH v1 0/4] PCI: Remove unnecessary includes of <linux/pci-aspm.h> Bjorn Helgaas
@ 2018-07-25 19:52 ` Bjorn Helgaas
  2018-07-25 21:12   ` [Intel-wired-lan] " Alexander Duyck
  2018-07-25 21:52   ` Jeff Kirsher
  2018-07-25 19:52 ` [PATCH v1 2/4] ath9k: " Bjorn Helgaas
                   ` (4 subsequent siblings)
  5 siblings, 2 replies; 12+ messages in thread
From: Bjorn Helgaas @ 2018-07-25 19:52 UTC (permalink / raw)
  To: linux-pci
  Cc: Jeff Kirsher, David S. Miller, Kalle Valo, Johannes Berg,
	Emmanuel Grumbach, Luca Coelho, ath9k-devel, linuxwifi,
	intel-wired-lan, netdev, linux-kernel, linux-wireless

From: Bjorn Helgaas <bhelgaas@google.com>

The igb driver doesn't need anything provided by pci-aspm.h, so remove
the unnecessary include of it.

Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
---
 drivers/net/ethernet/intel/igb/igb_main.c |    1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/net/ethernet/intel/igb/igb_main.c b/drivers/net/ethernet/intel/igb/igb_main.c
index f707709969ac..c77fda05f683 100644
--- a/drivers/net/ethernet/intel/igb/igb_main.c
+++ b/drivers/net/ethernet/intel/igb/igb_main.c
@@ -22,7 +22,6 @@
 #include <linux/if.h>
 #include <linux/if_vlan.h>
 #include <linux/pci.h>
-#include <linux/pci-aspm.h>
 #include <linux/delay.h>
 #include <linux/interrupt.h>
 #include <linux/ip.h>


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH v1 2/4] ath9k: Remove unnecessary include of <linux/pci-aspm.h>
  2018-07-25 19:52 [PATCH v1 0/4] PCI: Remove unnecessary includes of <linux/pci-aspm.h> Bjorn Helgaas
  2018-07-25 19:52 ` [PATCH v1 1/4] igb: Remove unnecessary include " Bjorn Helgaas
@ 2018-07-25 19:52 ` Bjorn Helgaas
  2018-07-26  6:07   ` Kalle Valo
  2018-07-25 19:52 ` [PATCH v1 3/4] iwlwifi: " Bjorn Helgaas
                   ` (3 subsequent siblings)
  5 siblings, 1 reply; 12+ messages in thread
From: Bjorn Helgaas @ 2018-07-25 19:52 UTC (permalink / raw)
  To: linux-pci
  Cc: Jeff Kirsher, David S. Miller, Kalle Valo, Johannes Berg,
	Emmanuel Grumbach, Luca Coelho, ath9k-devel, linuxwifi,
	intel-wired-lan, netdev, linux-kernel, linux-wireless

From: Bjorn Helgaas <bhelgaas@google.com>

The ath9k driver doesn't need anything provided by pci-aspm.h, so remove
the unnecessary include of it.

Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
---
 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 <linux/nl80211.h>
 #include <linux/pci.h>
-#include <linux/pci-aspm.h>
 #include <linux/module.h>
 #include "ath9k.h"
 


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH v1 3/4] iwlwifi: Remove unnecessary include of <linux/pci-aspm.h>
  2018-07-25 19:52 [PATCH v1 0/4] PCI: Remove unnecessary includes of <linux/pci-aspm.h> Bjorn Helgaas
  2018-07-25 19:52 ` [PATCH v1 1/4] igb: Remove unnecessary include " Bjorn Helgaas
  2018-07-25 19:52 ` [PATCH v1 2/4] ath9k: " Bjorn Helgaas
@ 2018-07-25 19:52 ` Bjorn Helgaas
  2018-07-25 20:59   ` Luciano Coelho
  2018-07-25 19:52 ` [PATCH v1 4/4] PCI: " Bjorn Helgaas
                   ` (2 subsequent siblings)
  5 siblings, 1 reply; 12+ messages in thread
From: Bjorn Helgaas @ 2018-07-25 19:52 UTC (permalink / raw)
  To: linux-pci
  Cc: Jeff Kirsher, David S. Miller, Kalle Valo, Johannes Berg,
	Emmanuel Grumbach, Luca Coelho, ath9k-devel, linuxwifi,
	intel-wired-lan, netdev, linux-kernel, linux-wireless

From: Bjorn Helgaas <bhelgaas@google.com>

This part of the iwlwifi driver doesn't need anything provided by
pci-aspm.h, so remove the unnecessary include of it.

Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
---
 drivers/net/wireless/intel/iwlwifi/pcie/drv.c |    1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/net/wireless/intel/iwlwifi/pcie/drv.c b/drivers/net/wireless/intel/iwlwifi/pcie/drv.c
index 38234bda9017..d6c55e111fda 100644
--- a/drivers/net/wireless/intel/iwlwifi/pcie/drv.c
+++ b/drivers/net/wireless/intel/iwlwifi/pcie/drv.c
@@ -72,7 +72,6 @@
 #include <linux/module.h>
 #include <linux/pm_runtime.h>
 #include <linux/pci.h>
-#include <linux/pci-aspm.h>
 #include <linux/acpi.h>
 
 #include "fw/acpi.h"


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* [PATCH v1 4/4] PCI: Remove unnecessary include of <linux/pci-aspm.h>
  2018-07-25 19:52 [PATCH v1 0/4] PCI: Remove unnecessary includes of <linux/pci-aspm.h> Bjorn Helgaas
                   ` (2 preceding siblings ...)
  2018-07-25 19:52 ` [PATCH v1 3/4] iwlwifi: " Bjorn Helgaas
@ 2018-07-25 19:52 ` Bjorn Helgaas
  2018-07-25 20:33 ` [PATCH v1 0/4] PCI: Remove unnecessary includes " Sinan Kaya
  2018-07-27 22:18 ` Bjorn Helgaas
  5 siblings, 0 replies; 12+ messages in thread
From: Bjorn Helgaas @ 2018-07-25 19:52 UTC (permalink / raw)
  To: linux-pci
  Cc: Jeff Kirsher, David S. Miller, Kalle Valo, Johannes Berg,
	Emmanuel Grumbach, Luca Coelho, ath9k-devel, linuxwifi,
	intel-wired-lan, netdev, linux-kernel, linux-wireless

From: Bjorn Helgaas <bhelgaas@google.com>

Several PCI core files include pci-aspm.h even though they don't need
anything provided by that file.  Remove the unnecessary includes of it.

Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
---
 drivers/pci/pci-sysfs.c |    1 -
 drivers/pci/pci.c       |    1 -
 drivers/pci/probe.c     |    1 -
 drivers/pci/remove.c    |    1 -
 4 files changed, 4 deletions(-)

diff --git a/drivers/pci/pci-sysfs.c b/drivers/pci/pci-sysfs.c
index 0c4653c1d2ce..91337faae60d 100644
--- a/drivers/pci/pci-sysfs.c
+++ b/drivers/pci/pci-sysfs.c
@@ -23,7 +23,6 @@
 #include <linux/fs.h>
 #include <linux/capability.h>
 #include <linux/security.h>
-#include <linux/pci-aspm.h>
 #include <linux/slab.h>
 #include <linux/vgaarb.h>
 #include <linux/pm_runtime.h>
diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c
index f5c6ab14fb31..7c2f0e682fc0 100644
--- a/drivers/pci/pci.c
+++ b/drivers/pci/pci.c
@@ -23,7 +23,6 @@
 #include <linux/string.h>
 #include <linux/log2.h>
 #include <linux/logic_pio.h>
-#include <linux/pci-aspm.h>
 #include <linux/pm_wakeup.h>
 #include <linux/interrupt.h>
 #include <linux/device.h>
diff --git a/drivers/pci/probe.c b/drivers/pci/probe.c
index ac876e32de4b..1ed2852dee21 100644
--- a/drivers/pci/probe.c
+++ b/drivers/pci/probe.c
@@ -13,7 +13,6 @@
 #include <linux/slab.h>
 #include <linux/module.h>
 #include <linux/cpumask.h>
-#include <linux/pci-aspm.h>
 #include <linux/aer.h>
 #include <linux/acpi.h>
 #include <linux/hypervisor.h>
diff --git a/drivers/pci/remove.c b/drivers/pci/remove.c
index 6f072eae4f7a..01ec7fcb5634 100644
--- a/drivers/pci/remove.c
+++ b/drivers/pci/remove.c
@@ -1,7 +1,6 @@
 // SPDX-License-Identifier: GPL-2.0
 #include <linux/pci.h>
 #include <linux/module.h>
-#include <linux/pci-aspm.h>
 #include "pci.h"
 
 static void pci_free_resources(struct pci_dev *dev)


^ permalink raw reply related	[flat|nested] 12+ messages in thread

* Re: [PATCH v1 0/4] PCI: Remove unnecessary includes of <linux/pci-aspm.h>
  2018-07-25 19:52 [PATCH v1 0/4] PCI: Remove unnecessary includes of <linux/pci-aspm.h> Bjorn Helgaas
                   ` (3 preceding siblings ...)
  2018-07-25 19:52 ` [PATCH v1 4/4] PCI: " Bjorn Helgaas
@ 2018-07-25 20:33 ` Sinan Kaya
  2018-07-25 20:59   ` Bjorn Helgaas
  2018-07-27 22:18 ` Bjorn Helgaas
  5 siblings, 1 reply; 12+ messages in thread
From: Sinan Kaya @ 2018-07-25 20:33 UTC (permalink / raw)
  To: Bjorn Helgaas, linux-pci
  Cc: Jeff Kirsher, David S. Miller, Kalle Valo, Johannes Berg,
	Emmanuel Grumbach, Luca Coelho, ath9k-devel, linuxwifi,
	intel-wired-lan, netdev, linux-kernel, linux-wireless

On 7/25/2018 12:52 PM, Bjorn Helgaas wrote:
> emove includes of <linux/pci-aspm.h> from files that don't need
> it.  I'll apply all these via the PCI tree unless there's objection.
> 
> ---
> 
> Bjorn Helgaas (4):
>        igb: Remove unnecessary include of <linux/pci-aspm.h>
>        ath9k: Remove unnecessary include of <linux/pci-aspm.h>
>        iwlwifi: Remove unnecessary include of <linux/pci-aspm.h>
>        PCI: Remove unnecessary include of <linux/pci-aspm.h>

Thanks.

Reviewed-by: Sinan Kaya <okaya@kernel.org>

Is it possible to kill that file altogether? I haven't looked who is
using outside of pci directory.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v1 3/4] iwlwifi: Remove unnecessary include of <linux/pci-aspm.h>
  2018-07-25 19:52 ` [PATCH v1 3/4] iwlwifi: " Bjorn Helgaas
@ 2018-07-25 20:59   ` Luciano Coelho
  0 siblings, 0 replies; 12+ messages in thread
From: Luciano Coelho @ 2018-07-25 20:59 UTC (permalink / raw)
  To: Bjorn Helgaas, linux-pci
  Cc: Jeff Kirsher, David S. Miller, Kalle Valo, Johannes Berg,
	Emmanuel Grumbach, ath9k-devel, linuxwifi, intel-wired-lan,
	netdev, linux-kernel, linux-wireless

On Wed, 2018-07-25 at 14:52 -0500, Bjorn Helgaas wrote:
> From: Bjorn Helgaas <bhelgaas@google.com>
> 
> This part of the iwlwifi driver doesn't need anything provided by
> pci-aspm.h, so remove the unnecessary include of it.
> 
> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
> ---

Acked-by: Luca Coelho <luciano.coelho@intel.com>

Thanks!

--
Cheers,
Luca.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v1 0/4] PCI: Remove unnecessary includes of <linux/pci-aspm.h>
  2018-07-25 20:33 ` [PATCH v1 0/4] PCI: Remove unnecessary includes " Sinan Kaya
@ 2018-07-25 20:59   ` Bjorn Helgaas
  0 siblings, 0 replies; 12+ messages in thread
From: Bjorn Helgaas @ 2018-07-25 20:59 UTC (permalink / raw)
  To: Sinan Kaya
  Cc: linux-pci, Jeff Kirsher, David S. Miller, Kalle Valo,
	Johannes Berg, Emmanuel Grumbach, Luca Coelho, ath9k-devel,
	linuxwifi, intel-wired-lan, netdev, linux-kernel, linux-wireless

On Wed, Jul 25, 2018 at 01:33:23PM -0700, Sinan Kaya wrote:
> On 7/25/2018 12:52 PM, Bjorn Helgaas wrote:
> > emove includes of <linux/pci-aspm.h> from files that don't need
> > it.  I'll apply all these via the PCI tree unless there's objection.
> > 
> > ---
> > 
> > Bjorn Helgaas (4):
> >        igb: Remove unnecessary include of <linux/pci-aspm.h>
> >        ath9k: Remove unnecessary include of <linux/pci-aspm.h>
> >        iwlwifi: Remove unnecessary include of <linux/pci-aspm.h>
> >        PCI: Remove unnecessary include of <linux/pci-aspm.h>
> 
> Thanks.
> 
> Reviewed-by: Sinan Kaya <okaya@kernel.org>
> 
> Is it possible to kill that file altogether? I haven't looked who is
> using outside of pci directory.

Thanks for taking a look!

It's possible we could remove it altogether; there's very little in
it, and in most cases the only reason drivers include it is to disable
certain ASPM link states to work around hardware defects.  It might
make sense to just move that interface into <linux/pci.h>.

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [Intel-wired-lan] [PATCH v1 1/4] igb: Remove unnecessary include of <linux/pci-aspm.h>
  2018-07-25 19:52 ` [PATCH v1 1/4] igb: Remove unnecessary include " Bjorn Helgaas
@ 2018-07-25 21:12   ` Alexander Duyck
  2018-07-25 21:52   ` Jeff Kirsher
  1 sibling, 0 replies; 12+ messages in thread
From: Alexander Duyck @ 2018-07-25 21:12 UTC (permalink / raw)
  To: Bjorn Helgaas
  Cc: linux-pci, Emmanuel Grumbach, Johannes Berg, linuxwifi, Netdev,
	linux-wireless, ath9k-devel, LKML, Luca Coelho, intel-wired-lan,
	David S. Miller, Kalle Valo

On Wed, Jul 25, 2018 at 12:52 PM, Bjorn Helgaas <helgaas@kernel.org> wrote:
> From: Bjorn Helgaas <bhelgaas@google.com>
>
> The igb driver doesn't need anything provided by pci-aspm.h, so remove
> the unnecessary include of it.
>
> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>

Looks good to me.

Acked-by: Alexander Duyck <alexander.h.duyck@intel.com>

> ---
>  drivers/net/ethernet/intel/igb/igb_main.c |    1 -
>  1 file changed, 1 deletion(-)
>
> diff --git a/drivers/net/ethernet/intel/igb/igb_main.c b/drivers/net/ethernet/intel/igb/igb_main.c
> index f707709969ac..c77fda05f683 100644
> --- a/drivers/net/ethernet/intel/igb/igb_main.c
> +++ b/drivers/net/ethernet/intel/igb/igb_main.c
> @@ -22,7 +22,6 @@
>  #include <linux/if.h>
>  #include <linux/if_vlan.h>
>  #include <linux/pci.h>
> -#include <linux/pci-aspm.h>
>  #include <linux/delay.h>
>  #include <linux/interrupt.h>
>  #include <linux/ip.h>
>
> _______________________________________________
> Intel-wired-lan mailing list
> Intel-wired-lan@osuosl.org
> https://lists.osuosl.org/mailman/listinfo/intel-wired-lan

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v1 1/4] igb: Remove unnecessary include of <linux/pci-aspm.h>
  2018-07-25 19:52 ` [PATCH v1 1/4] igb: Remove unnecessary include " Bjorn Helgaas
  2018-07-25 21:12   ` [Intel-wired-lan] " Alexander Duyck
@ 2018-07-25 21:52   ` Jeff Kirsher
  1 sibling, 0 replies; 12+ messages in thread
From: Jeff Kirsher @ 2018-07-25 21:52 UTC (permalink / raw)
  To: Bjorn Helgaas, linux-pci
  Cc: David S. Miller, Kalle Valo, Johannes Berg, Emmanuel Grumbach,
	Luca Coelho, ath9k-devel, linuxwifi, intel-wired-lan, netdev,
	linux-kernel, linux-wireless

[-- Attachment #1: Type: text/plain, Size: 477 bytes --]

On Wed, 2018-07-25 at 14:52 -0500, Bjorn Helgaas wrote:
> From: Bjorn Helgaas <bhelgaas@google.com>
> 
> The igb driver doesn't need anything provided by pci-aspm.h, so
> remove
> the unnecessary include of it.
> 
> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>

Acked-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>

I am fine with you picking up this change.

> ---
>  drivers/net/ethernet/intel/igb/igb_main.c |    1 -
>  1 file changed, 1 deletion(-)


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v1 2/4] ath9k: Remove unnecessary include of <linux/pci-aspm.h>
  2018-07-25 19:52 ` [PATCH v1 2/4] ath9k: " Bjorn Helgaas
@ 2018-07-26  6:07   ` Kalle Valo
  0 siblings, 0 replies; 12+ messages in thread
From: Kalle Valo @ 2018-07-26  6:07 UTC (permalink / raw)
  To: Bjorn Helgaas
  Cc: linux-pci, Jeff Kirsher, David S. Miller, Johannes Berg,
	Emmanuel Grumbach, Luca Coelho, ath9k-devel, linuxwifi,
	intel-wired-lan, netdev, linux-kernel, linux-wireless

Bjorn Helgaas <helgaas@kernel.org> writes:

> From: Bjorn Helgaas <bhelgaas@google.com>
>
> The ath9k driver doesn't need anything provided by pci-aspm.h, so remove
> the unnecessary include of it.
>
> Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>

Looks good to me and feel free to take via your tree.

Acked-by: Kalle Valo <kvalo@codeaurora.org>

-- 
Kalle Valo

^ permalink raw reply	[flat|nested] 12+ messages in thread

* Re: [PATCH v1 0/4] PCI: Remove unnecessary includes of <linux/pci-aspm.h>
  2018-07-25 19:52 [PATCH v1 0/4] PCI: Remove unnecessary includes of <linux/pci-aspm.h> Bjorn Helgaas
                   ` (4 preceding siblings ...)
  2018-07-25 20:33 ` [PATCH v1 0/4] PCI: Remove unnecessary includes " Sinan Kaya
@ 2018-07-27 22:18 ` Bjorn Helgaas
  5 siblings, 0 replies; 12+ messages in thread
From: Bjorn Helgaas @ 2018-07-27 22:18 UTC (permalink / raw)
  To: linux-pci
  Cc: Jeff Kirsher, David S. Miller, Kalle Valo, Johannes Berg,
	Emmanuel Grumbach, Luca Coelho, ath9k-devel, linuxwifi,
	intel-wired-lan, netdev, linux-kernel, linux-wireless

On Wed, Jul 25, 2018 at 02:52:08PM -0500, Bjorn Helgaas wrote:
> Remove includes of <linux/pci-aspm.h> from files that don't need
> it.  I'll apply all these via the PCI tree unless there's objection.
> 
> ---
> 
> Bjorn Helgaas (4):
>       igb: Remove unnecessary include of <linux/pci-aspm.h>
>       ath9k: Remove unnecessary include of <linux/pci-aspm.h>
>       iwlwifi: Remove unnecessary include of <linux/pci-aspm.h>
>       PCI: Remove unnecessary include of <linux/pci-aspm.h>
> 
> 
>  drivers/net/ethernet/intel/igb/igb_main.c     |    1 -
>  drivers/net/wireless/ath/ath9k/pci.c          |    1 -
>  drivers/net/wireless/intel/iwlwifi/pcie/drv.c |    1 -
>  drivers/pci/pci-sysfs.c                       |    1 -
>  drivers/pci/pci.c                             |    1 -
>  drivers/pci/probe.c                           |    1 -
>  drivers/pci/remove.c                          |    1 -
>  7 files changed, 7 deletions(-)

I applied these to the pci/aspm branch for v4.19.

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2018-07-27 22:19 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-25 19:52 [PATCH v1 0/4] PCI: Remove unnecessary includes of <linux/pci-aspm.h> Bjorn Helgaas
2018-07-25 19:52 ` [PATCH v1 1/4] igb: Remove unnecessary include " Bjorn Helgaas
2018-07-25 21:12   ` [Intel-wired-lan] " Alexander Duyck
2018-07-25 21:52   ` Jeff Kirsher
2018-07-25 19:52 ` [PATCH v1 2/4] ath9k: " Bjorn Helgaas
2018-07-26  6:07   ` Kalle Valo
2018-07-25 19:52 ` [PATCH v1 3/4] iwlwifi: " Bjorn Helgaas
2018-07-25 20:59   ` Luciano Coelho
2018-07-25 19:52 ` [PATCH v1 4/4] PCI: " Bjorn Helgaas
2018-07-25 20:33 ` [PATCH v1 0/4] PCI: Remove unnecessary includes " Sinan Kaya
2018-07-25 20:59   ` Bjorn Helgaas
2018-07-27 22:18 ` Bjorn Helgaas

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).