From: Paul M. <le...@us...> - 2002-06-27 21:18:51
|
Update of /cvsroot/linux-mips/linux/drivers/video In directory usw-pr-cvs1:/tmp/cvs-serv22011/drivers/video Modified Files: sfb.c Log Message: Nuke useless functions. Index: sfb.c =================================================================== RCS file: /cvsroot/linux-mips/linux/drivers/video/sfb.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- sfb.c 27 Jun 2002 21:13:06 -0000 1.3 +++ sfb.c 27 Jun 2002 21:18:48 -0000 1.4 @@ -86,8 +86,6 @@ int sfb_setup(char*); -static int sfb_open(struct fb_info *info, int user); -static int sfb_release(struct fb_info *info, int user); static int sfb_get_fix(struct fb_fix_screeninfo *fix, int con, struct fb_info *info); static int sfb_get_var(struct fb_var_screeninfo *var, int con, @@ -100,8 +98,6 @@ struct fb_info *info); static int sfb_set_cmap(struct fb_cmap *cmap, int kspc, int con, struct fb_info *info); -static int sfb_ioctl(struct inode *inode, struct file *file, u_int cmd, - u_long arg, int con, struct fb_info *info); /* @@ -131,15 +127,12 @@ static struct fb_ops sfb_ops = { owner: THIS_MODULE, - fb_open: sfb_open, - fb_release: sfb_release, fb_get_fix: sfb_get_fix, fb_get_var: sfb_get_var, fb_set_var: sfb_set_var, fb_get_cmap: sfb_get_cmap, fb_set_cmap: sfb_set_cmap, fb_pan_display: sfb_pan_display, - fb_ioctl: sfb_ioctl, }; /* |