eisa.c (bdad1f836ab1ca2b18a625222f63f630cfd14e41) | eisa.c (53f01bba49938f115237fe43a261c31ac13ae5c6) |
---|---|
1/* 2 * eisa.c - provide support for EISA adapters in PA-RISC machines 3 * 4 * This program is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU General Public License 6 * as published by the Free Software Foundation; either version 7 * 2 of the License, or (at your option) any later version. 8 * --- 301 unchanged lines hidden (view full) --- 310 311static int __devinit eisa_probe(struct parisc_device *dev) 312{ 313 int i, result; 314 315 char *name = is_mongoose(dev) ? "Mongoose" : "Wax"; 316 317 printk(KERN_INFO "%s EISA Adapter found at 0x%08lx\n", | 1/* 2 * eisa.c - provide support for EISA adapters in PA-RISC machines 3 * 4 * This program is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU General Public License 6 * as published by the Free Software Foundation; either version 7 * 2 of the License, or (at your option) any later version. 8 * --- 301 unchanged lines hidden (view full) --- 310 311static int __devinit eisa_probe(struct parisc_device *dev) 312{ 313 int i, result; 314 315 char *name = is_mongoose(dev) ? "Mongoose" : "Wax"; 316 317 printk(KERN_INFO "%s EISA Adapter found at 0x%08lx\n", |
318 name, dev->hpa); | 318 name, dev->hpa.start); |
319 320 eisa_dev.hba.dev = dev; 321 eisa_dev.hba.iommu = ccio_get_iommu(dev); 322 323 eisa_dev.hba.lmmio_space.name = "EISA"; 324 eisa_dev.hba.lmmio_space.start = F_EXTEND(0xfc000000); 325 eisa_dev.hba.lmmio_space.end = F_EXTEND(0xffbfffff); 326 eisa_dev.hba.lmmio_space.flags = IORESOURCE_MEM; --- 138 unchanged lines hidden --- | 319 320 eisa_dev.hba.dev = dev; 321 eisa_dev.hba.iommu = ccio_get_iommu(dev); 322 323 eisa_dev.hba.lmmio_space.name = "EISA"; 324 eisa_dev.hba.lmmio_space.start = F_EXTEND(0xfc000000); 325 eisa_dev.hba.lmmio_space.end = F_EXTEND(0xffbfffff); 326 eisa_dev.hba.lmmio_space.flags = IORESOURCE_MEM; --- 138 unchanged lines hidden --- |