Lines Matching defs:error
1857 /* If no available mode can be used, return an error. */
2514 int error;
2539 error = request_irq(irq, sh_mobile_lcdc_irq, 0,
2541 if (error) {
2555 error = sh_mobile_lcdc_check_interface(ch);
2556 if (error) {
2583 error = -EINVAL;
2593 error = -ENOMEM;
2597 error = sh_mobile_lcdc_setup_clocks(priv, pdata->clock_source);
2598 if (error) {
2609 error = sh_mobile_lcdc_channel_init(ch);
2610 if (error)
2620 error = sh_mobile_lcdc_overlay_init(ovl);
2621 if (error)
2625 error = sh_mobile_lcdc_start(priv);
2626 if (error) {
2634 error = sh_mobile_lcdc_channel_fb_register(ch);
2635 if (error)
2642 error = sh_mobile_lcdc_overlay_fb_register(ovl);
2643 if (error)
2651 return error;