diff options
author | Krzysztof Wilczyński | 2021-10-13 00:31:45 +0000 |
---|---|---|
committer | Bjorn Helgaas | 2021-11-02 14:41:58 -0500 |
commit | 31dedb8ed11e0d9aa266bb33e46d827006c4a72f (patch) | |
tree | 6b98df60d77c2ef5310ece6846fab47a429498ca /drivers | |
parent | fb2099960d46c486c552807a216aae33819155c9 (diff) |
PCI: cpqphp: Use <linux/io.h> instead of <asm/io.h>
Use the preferred generic header file linux/io.h that already includes the
corresponding asm/io.h file.
Link: https://lore.kernel.org/r/20211013003145.1107148-2-kw@linux.com
Signed-off-by: Krzysztof Wilczyński <kw@linux.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Jonathan Derrick <jonathan.derrick@linux.dev>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/pci/hotplug/cpqphp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/hotplug/cpqphp.h b/drivers/pci/hotplug/cpqphp.h index 77e4e0142fbc..2f7b49ea96e2 100644 --- a/drivers/pci/hotplug/cpqphp.h +++ b/drivers/pci/hotplug/cpqphp.h @@ -15,7 +15,7 @@ #define _CPQPHP_H #include <linux/interrupt.h> -#include <asm/io.h> /* for read? and write? functions */ +#include <linux/io.h> /* for read? and write? functions */ #include <linux/delay.h> /* for delays */ #include <linux/mutex.h> #include <linux/sched/signal.h> /* for signal_pending() */ |