| .. | .. |
|---|
| 145 | 145 | addr = pci_resource_start(pdev, 0); |
|---|
| 146 | 146 | len = pci_resource_len(pdev, 0); |
|---|
| 147 | 147 | |
|---|
| 148 | | - dd->kregbase = ioremap_nocache(addr, len); |
|---|
| 148 | + dd->kregbase = ioremap(addr, len); |
|---|
| 149 | 149 | if (!dd->kregbase) |
|---|
| 150 | 150 | return -ENOMEM; |
|---|
| 151 | 151 | |
|---|
| .. | .. |
|---|
| 387 | 387 | |
|---|
| 388 | 388 | static int qib_pcie_coalesce; |
|---|
| 389 | 389 | module_param_named(pcie_coalesce, qib_pcie_coalesce, int, S_IRUGO); |
|---|
| 390 | | -MODULE_PARM_DESC(pcie_coalesce, "tune PCIe colescing on some Intel chipsets"); |
|---|
| 390 | +MODULE_PARM_DESC(pcie_coalesce, "tune PCIe coalescing on some Intel chipsets"); |
|---|
| 391 | 391 | |
|---|
| 392 | 392 | /* |
|---|
| 393 | 393 | * Enable PCIe completion and data coalescing, on Intel 5x00 and 7300 |
|---|
| .. | .. |
|---|
| 597 | 597 | struct qib_devdata *dd = pci_get_drvdata(pdev); |
|---|
| 598 | 598 | |
|---|
| 599 | 599 | qib_devinfo(pdev, "QIB resume function called\n"); |
|---|
| 600 | | - pci_cleanup_aer_uncorrect_error_status(pdev); |
|---|
| 601 | 600 | /* |
|---|
| 602 | 601 | * Running jobs will fail, since it's asynchronous |
|---|
| 603 | 602 | * unlike sysfs-requested reset. Better than |
|---|