Lines Matching defs:error
1852 /* If no available mode can be used, return an error. */
2510 int error;
2535 error = request_irq(irq, sh_mobile_lcdc_irq, 0,
2537 if (error) {
2551 error = sh_mobile_lcdc_check_interface(ch);
2552 if (error) {
2579 error = -EINVAL;
2589 error = -ENOMEM;
2593 error = sh_mobile_lcdc_setup_clocks(priv, pdata->clock_source);
2594 if (error) {
2605 error = sh_mobile_lcdc_channel_init(ch);
2606 if (error)
2616 error = sh_mobile_lcdc_overlay_init(ovl);
2617 if (error)
2621 error = sh_mobile_lcdc_start(priv);
2622 if (error) {
2630 error = sh_mobile_lcdc_channel_fb_register(ch);
2631 if (error)
2638 error = sh_mobile_lcdc_overlay_fb_register(ovl);
2639 if (error)
2647 return error;