diff options
Diffstat (limited to 'drivers/pcmcia')
-rw-r--r-- | drivers/pcmcia/rsrc_nonstatic.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/drivers/pcmcia/rsrc_nonstatic.c b/drivers/pcmcia/rsrc_nonstatic.c index dcc602134d90..2e47991eccf6 100644 --- a/drivers/pcmcia/rsrc_nonstatic.c +++ b/drivers/pcmcia/rsrc_nonstatic.c | |||
@@ -874,10 +874,8 @@ static int nonstatic_autoadd_resources(struct pcmcia_socket *s) | |||
874 | if (res == &ioport_resource) | 874 | if (res == &ioport_resource) |
875 | continue; | 875 | continue; |
876 | dev_printk(KERN_INFO, &s->cb_dev->dev, | 876 | dev_printk(KERN_INFO, &s->cb_dev->dev, |
877 | "pcmcia: parent PCI bridge I/O " | 877 | "pcmcia: parent PCI bridge window: %pR\n", |
878 | "window: 0x%llx - 0x%llx\n", | 878 | res); |
879 | (unsigned long long)res->start, | ||
880 | (unsigned long long)res->end); | ||
881 | if (!adjust_io(s, ADD_MANAGED_RESOURCE, res->start, res->end)) | 879 | if (!adjust_io(s, ADD_MANAGED_RESOURCE, res->start, res->end)) |
882 | done |= IORESOURCE_IO; | 880 | done |= IORESOURCE_IO; |
883 | 881 | ||
@@ -887,10 +885,8 @@ static int nonstatic_autoadd_resources(struct pcmcia_socket *s) | |||
887 | if (res == &iomem_resource) | 885 | if (res == &iomem_resource) |
888 | continue; | 886 | continue; |
889 | dev_printk(KERN_INFO, &s->cb_dev->dev, | 887 | dev_printk(KERN_INFO, &s->cb_dev->dev, |
890 | "pcmcia: parent PCI bridge Memory " | 888 | "pcmcia: parent PCI bridge window: %pR\n", |
891 | "window: 0x%llx - 0x%llx\n", | 889 | res); |
892 | (unsigned long long)res->start, | ||
893 | (unsigned long long)res->end); | ||
894 | if (!adjust_memory(s, ADD_MANAGED_RESOURCE, res->start, res->end)) | 890 | if (!adjust_memory(s, ADD_MANAGED_RESOURCE, res->start, res->end)) |
895 | done |= IORESOURCE_MEM; | 891 | done |= IORESOURCE_MEM; |
896 | } | 892 | } |