diff options
| author | Antonino Daplas <adaplas@hotpop.com> | 2004-10-28 23:25:03 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-10-28 23:25:03 -0700 |
| commit | e7a05fe59d2142af0c36d36f2fe0cf0d8ea36612 (patch) | |
| tree | 4656e143e3b5992209e7a1bd34c3ef6a95da72ac /include/video | |
| parent | 8d82d4389037f9fabeb41f555921cafa98c08d2b (diff) | |
[PATCH] fbdev: Fix io access in neofb
- Fix IO access in neofb
- Use readl/writel
- add __iomem annotations
Signed-off-by: Antonino Daplas <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/video')
| -rw-r--r-- | include/video/neomagic.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/video/neomagic.h b/include/video/neomagic.h index ab69ed7b9b8c..bdaee70868dd 100644 --- a/include/video/neomagic.h +++ b/include/video/neomagic.h @@ -179,11 +179,11 @@ struct neofb_par { #ifdef CONFIG_MTRR int mtrr; #endif - u8 *mmio_vbase; + u8 __iomem *mmio_vbase; u8 cursorOff; u8 *cursorPad; /* Must die !! */ - Neo2200 *neo2200; + Neo2200 __iomem *neo2200; /* Panels size */ int NeoPanelWidth; |
