diff options
author | Paul Gortmaker <paul.gortmaker@windriver.com> | 2014-04-06 01:13:33 +0400 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2014-04-15 02:12:37 +0400 |
commit | 56a3d18279f00c7ccbcdc193ceaf1a2f88c51457 (patch) | |
tree | a0c4697f2f0bc90e2ee5680dab99e89aae1509da /drivers/pci/search.c | |
parent | ff0c41b2df1577f3354f788af4f6bb5dbdfd26da (diff) | |
download | linux-56a3d18279f00c7ccbcdc193ceaf1a2f88c51457.tar.xz |
PCI: Remove unnecessary includes of <linux/init.h>
None of these files are actually using any __init type directives and hence
don't need to include <linux/init.h>. Most are just a left over from
__devinit and __cpuinit removal, or simply due to code getting copied from
one driver to the next.
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci/search.c')
-rw-r--r-- | drivers/pci/search.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/pci/search.c b/drivers/pci/search.c index 4a1b972efe7f..8e495bda678f 100644 --- a/drivers/pci/search.c +++ b/drivers/pci/search.c @@ -7,7 +7,6 @@ * Copyright (C) 2003 -- 2004 Greg Kroah-Hartman <greg@kroah.com> */ -#include <linux/init.h> #include <linux/pci.h> #include <linux/slab.h> #include <linux/module.h> |