Re: [PATCH] Atyfb: kill assignment warnings on Atari due to __iomem changes

From: Antonino A. Daplas
Date: Sun Oct 24 2004 - 07:28:56 EST


On Sunday 24 October 2004 19:15, Geert Uytterhoeven wrote:
> Atyfb: kill assignment warnings on Atari due to __iomem changes

I pushed a big mach64 patch (coming from various authors) to Andrew, and
this will get rejected.

Attached is an incremental patch for the big mach64 update.

Signed-off-by: Antonino Daplas <adaplas@xxxxxxx>
---

---diff -Nru a/drivers/video/aty/atyfb_base.c b/drivers/video/aty/atyfb_base.c
--- a/drivers/video/aty/atyfb_base.c 2004-10-22 15:57:58 +08:00
+++ b/drivers/video/aty/atyfb_base.c 2004-10-24 20:26:04 +08:00
@@ -3457,8 +3457,10 @@
*/
info->screen_base = ioremap(phys_vmembase[m64_num], phys_size[m64_num]);
info->fix.smem_start = (unsigned long)info->screen_base; /* Fake! */
- par->ati_regbase = ioremap(phys_guiregbase[m64_num], 0x10000) + 0xFC00ul;
- info->fix.mmio_start = par->ati_regbase; /* Fake! */
+ par->ati_regbase = ioremap(phys_guiregbase[m64_num],
+ 0x10000) + 0xFC00ul;
+ info->fix.mmio_start =
+ (unsigned long)par->ati_regbase; /* Fake! */

aty_st_le32(CLOCK_CNTL, 0x12345678, par);
clock_r = aty_ld_le32(CLOCK_CNTL, par);



-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/