Changes between Version 1 and Version 2 of Ticket #19312, comment 2
- Timestamp:
- Mar 6, 2020 1:05:36 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #19312, comment 2
v1 v2 23 23 - RTR0PTR R0PtrMapping = ioremap_nocache(pci_resource_start(pPciDev, iRegion), 24 24 + /* 25 + * ioremap _cache() defaults to no caching since 2.6 kernels.25 + * ioremap() defaults to no caching since 2.6 kernels. 26 26 + * We try to optimize later. 27 27 + */ 28 + RTR0PTR R0PtrMapping = ioremap _cache(pci_resource_start(pPciDev, iRegion),28 + RTR0PTR R0PtrMapping = ioremap(pci_resource_start(pPciDev, iRegion), 29 29 pci_resource_len(pPciDev, iRegion)); 30 30