patch-2.2.3 linux/drivers/video/retz3fb.c
Next file: linux/drivers/video/sbusfb.c
Previous file: linux/drivers/video/q40fb.c
Back to the patch index
Back to the overall index
- Lines: 38
- Date:
Thu Feb 25 10:02:11 1999
- Orig file:
v2.2.2/linux/drivers/video/retz3fb.c
- Orig date:
Wed Jan 20 23:14:06 1999
diff -u --recursive --new-file v2.2.2/linux/drivers/video/retz3fb.c linux/drivers/video/retz3fb.c
@@ -101,8 +101,8 @@
struct retz3_fb_info {
struct fb_info info;
- unsigned long base;
- unsigned long fbmem;
+ unsigned char *base;
+ unsigned char *fbmem;
unsigned long fbsize;
volatile unsigned char *regs;
unsigned long physfbmem;
@@ -1209,7 +1209,7 @@
if (con == -1)
con = 0;
- display->screen_base = (char *)zinfo->fbmem;
+ display->screen_base = zinfo->fbmem;
display->visual = fix.visual;
display->type = fix.type;
display->type_aux = fix.type_aux;
@@ -1282,7 +1282,7 @@
struct fb_fix_screeninfo fix;
retz3fb_get_fix(&fix, con, info);
- display->screen_base = (char *)zinfo->fbmem;
+ display->screen_base = zinfo->fbmem;
display->visual = fix.visual;
display->type = fix.type;
display->type_aux = fix.type_aux;
@@ -1456,7 +1456,7 @@
board_size = (unsigned long)cd->cd_BoardSize;
zinfo->base = ioremap(board_addr, board_size);
- zinfo->regs = (unsigned char *)(zinfo->base);
+ zinfo->regs = zinfo->base;
zinfo->fbmem = zinfo->base + VIDEO_MEM_OFFSET;
/* Get memory size - for now we asume its a 4MB board */
zinfo->fbsize = 0x00400000; /* 4 MB */
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)