Commit cd1f7667 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

PCI: fix __iomem warnings in quirk code

Signed-off-by: default avatarGreg Kroah-Hartman <greg@kroah.com>
parent 808f57d4
......@@ -921,7 +921,7 @@ static void __init quirk_usb_handoff_uhci(struct pci_dev *pdev)
static void __init quirk_usb_handoff_ohci(struct pci_dev *pdev)
{
char *base;
void __iomem *base;
int wait_time;
base = ioremap_nocache(pci_resource_start(pdev, 0),
......@@ -952,7 +952,7 @@ static void __init quirk_usb_handoff_ohci(struct pci_dev *pdev)
static void __init quirk_usb_disable_ehci(struct pci_dev *pdev)
{
int wait_time, delta;
char *base, *op_reg_base;
void __iomem *base, *op_reg_base;
u32 hcc_params, val, temp;
u8 cap_length;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment