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:
@@ -1198,7 +1198,7 @@ static int __init stifb_init_fb(struct sti_struct *sti, int bpp_pref)
|
||||
case S9000_ID_TOMCAT: /* Dual CRX, behaves else like a CRX */
|
||||
/* FIXME: TomCat supports two heads:
|
||||
* fb.iobase = REGION_BASE(fb_info,3);
|
||||
* fb.screen_base = ioremap_nocache(REGION_BASE(fb_info,2),xxx);
|
||||
* fb.screen_base = ioremap(REGION_BASE(fb_info,2),xxx);
|
||||
* for now we only support the left one ! */
|
||||
xres = fb->ngle_rom.x_size_visible;
|
||||
yres = fb->ngle_rom.y_size_visible;
|
||||
@@ -1291,7 +1291,7 @@ static int __init stifb_init_fb(struct sti_struct *sti, int bpp_pref)
|
||||
|
||||
strcpy(fix->id, "stifb");
|
||||
info->fbops = &stifb_ops;
|
||||
info->screen_base = ioremap_nocache(REGION_BASE(fb,1), fix->smem_len);
|
||||
info->screen_base = ioremap(REGION_BASE(fb,1), fix->smem_len);
|
||||
if (!info->screen_base) {
|
||||
printk(KERN_ERR "stifb: failed to map memory\n");
|
||||
goto out_err0;
|
||||
|
||||
Reference in New Issue
Block a user