From patchwork Fri Oct 23 10:04:34 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Geert Uytterhoeven X-Patchwork-Id: 7471581 Return-Path: X-Original-To: patchwork-linux-sh@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 7F982BEEA4 for ; Fri, 23 Oct 2015 10:04:44 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id DF52C2083E for ; Fri, 23 Oct 2015 10:04:42 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 6619F20667 for ; Fri, 23 Oct 2015 10:04:37 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751695AbbJWKEg (ORCPT ); Fri, 23 Oct 2015 06:04:36 -0400 Received: from mail-ob0-f182.google.com ([209.85.214.182]:33539 "EHLO mail-ob0-f182.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750974AbbJWKEf (ORCPT ); Fri, 23 Oct 2015 06:04:35 -0400 Received: by obbwb3 with SMTP id wb3so89973527obb.0; Fri, 23 Oct 2015 03:04:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type; bh=UfOaB9mJDVeENx49Th8gbJukhlfETNz0zf/K9KXtjDU=; b=vFsH380FIzhkz+1QwmXayienH+iqZms69nwAbJKOUl6BkNls7lpz4fhC50WQGViWy8 l3D5ASHRtvfFxtzzhL9f71m1CZURQnfZp2i9aIsHvyOxq4ocgpxzxQbrU0mE1Q9EDbaD 9Psxqcn+CWdpGqVqwAYm7C7KZDE128R3kdfsvaRPLmtXcCfmksfAHNChPCunDiFb/UcC Ri9C+ehcMDoqPSIL682l0V5BMdkZVI1Ky4X0nIn+vFV/9gCNgAA9QdXRf52U8B8apJRI Pu9lrSiQvz99IwYqyoMID8+1MKgSgrP+g1IQ6N0bhMHC3PoIsd3PeHGpoAiUSkcyYBnf 7h/g== MIME-Version: 1.0 X-Received: by 10.182.65.5 with SMTP id t5mr14665636obs.32.1445594674951; Fri, 23 Oct 2015 03:04:34 -0700 (PDT) Received: by 10.60.34.132 with HTTP; Fri, 23 Oct 2015 03:04:34 -0700 (PDT) In-Reply-To: <20151023080601.GC1642@katana> References: <1441311613-2681-1-git-send-email-wsa@the-dreams.de> <131418014.1WnDGNUZcn@avalon> <20151022110505.GB1572@katana> <1917001.aD8sIkvx7f@avalon> <20151023080601.GC1642@katana> Date: Fri, 23 Oct 2015 12:04:34 +0200 X-Google-Sender-Auth: vOtXR6Cn7EhJVZb73kXqSuDBCps Message-ID: Subject: Re: [PATCH 5/9] i2c: rcar: init new messages in irq From: Geert Uytterhoeven To: Wolfram Sang Cc: Laurent Pinchart , Linux I2C , Linux-sh list , Magnus Damm , Simon Horman , Kuninori Morimoto , Yoshihiro Kaneko , Sergei Shtylyov Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org X-Spam-Status: No, score=-6.8 required=5.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD,T_DKIM_INVALID,UNPARSEABLE_RELAY autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP On Fri, Oct 23, 2015 at 10:06 AM, Wolfram Sang wrote: >> b9653e9c000dc2ebd9c8712442c659ccd1586e22 from Geert's drivers tree ? On my > > Does that build for you? > > drivers/gpu/drm/drm_fb_helper.c: In function 'restore_fbdev_mode': > drivers/gpu/drm/drm_fb_helper.c:448:5: error: 'error' undeclared (first use in this function) > > ?? Sorry, my fault. Wrong merge resolution: Gr{oetje,eeting}s, Geert --- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds -- To unsubscribe from this list: send the line "unsubscribe linux-sh" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- a/drivers/gpu/drm/drm_fb_helper.c +++ b/drivers/gpu/drm/drm_fb_helper.c @@ -445,7 +445,7 @@ static int restore_fbdev_mode(struct drm_fb_helper *fb_helpe if (crtc->funcs->cursor_set2) { ret = crtc->funcs->cursor_set2(crtc, NULL, 0, 0, 0, 0, 0 if (ret) - error = true; + return ret; } else if (crtc->funcs->cursor_set) { ret = crtc->funcs->cursor_set(crtc, NULL, 0, 0, 0); if (ret)