Lines Matching refs:cfb
35 struct fb_info *cfb; variable
277 cfb = kzalloc(sizeof(*cfb), GFP_KERNEL); in clps711x_fb_probe()
278 if (!cfb) in clps711x_fb_probe()
281 strcpy(cfb->fix.id, "clps711x"); in clps711x_fb_probe()
283 cfb->fbops = &clps7111fb_ops; in clps711x_fb_probe()
284 cfb->flags = FBINFO_DEFAULT; in clps711x_fb_probe()
286 clps711x_guess_lcd_params(cfb); in clps711x_fb_probe()
288 fb_alloc_cmap(&cfb->cmap, CMAP_MAX_SIZE, 0); in clps711x_fb_probe()
290 err = register_framebuffer(cfb); in clps711x_fb_probe()
297 unregister_framebuffer(cfb); in clps711x_fb_remove()
298 kfree(cfb); in clps711x_fb_remove()