fm2fb.c (52920704df878050123dfeb469aa6ab8022547c1) fm2fb.c (210bbb71b3457bebd2fff0aa8a30623891ed2411)
1/*
2 * linux/drivers/video/fm2fb.c -- BSC FrameMaster II/Rainbow II frame buffer
3 * device
4 *
5 * Copyright (C) 1998 Steffen A. Mork (linux-dev@morknet.de)
6 * Copyright (C) 1999 Geert Uytterhoeven
7 *
8 * Written for 2.0.x by Steffen A. Mork

--- 153 unchanged lines hidden (view full) ---

162 */
163
164static int fm2fb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
165 u_int transp, struct fb_info *info);
166static int fm2fb_blank(int blank, struct fb_info *info);
167
168static const struct fb_ops fm2fb_ops = {
169 .owner = THIS_MODULE,
1/*
2 * linux/drivers/video/fm2fb.c -- BSC FrameMaster II/Rainbow II frame buffer
3 * device
4 *
5 * Copyright (C) 1998 Steffen A. Mork (linux-dev@morknet.de)
6 * Copyright (C) 1999 Geert Uytterhoeven
7 *
8 * Written for 2.0.x by Steffen A. Mork

--- 153 unchanged lines hidden (view full) ---

162 */
163
164static int fm2fb_setcolreg(u_int regno, u_int red, u_int green, u_int blue,
165 u_int transp, struct fb_info *info);
166static int fm2fb_blank(int blank, struct fb_info *info);
167
168static const struct fb_ops fm2fb_ops = {
169 .owner = THIS_MODULE,
170 FB_DEFAULT_IOMEM_OPS,
170 .fb_setcolreg = fm2fb_setcolreg,
171 .fb_blank = fm2fb_blank,
171 .fb_setcolreg = fm2fb_setcolreg,
172 .fb_blank = fm2fb_blank,
172 .fb_fillrect = cfb_fillrect,
173 .fb_copyarea = cfb_copyarea,
174 .fb_imageblit = cfb_imageblit,
175};
176
177 /*
178 * Blank the display.
179 */
180static int fm2fb_blank(int blank, struct fb_info *info)
181{
182 unsigned char t = FRAMEMASTER_ROM;

--- 140 unchanged lines hidden ---
173};
174
175 /*
176 * Blank the display.
177 */
178static int fm2fb_blank(int blank, struct fb_info *info)
179{
180 unsigned char t = FRAMEMASTER_ROM;

--- 140 unchanged lines hidden ---