mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-25 00:52:45 -04:00
remove ioremap_nocache and devm_ioremap_nocache
ioremap has provided non-cached semantics by default since the Linux 2.6 days, so remove the additional ioremap_nocache interface. Signed-off-by: Christoph Hellwig <hch@lst.de> Acked-by: Arnd Bergmann <arnd@arndb.de>
This commit is contained in:
@@ -683,7 +683,7 @@ static int kyrofb_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
||||
kyro_fix.mmio_len = pci_resource_len(pdev, 1);
|
||||
|
||||
currentpar->regbase = deviceInfo.pSTGReg =
|
||||
ioremap_nocache(kyro_fix.mmio_start, kyro_fix.mmio_len);
|
||||
ioremap(kyro_fix.mmio_start, kyro_fix.mmio_len);
|
||||
if (!currentpar->regbase)
|
||||
goto out_free_fb;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user