From patchwork Wed Nov 2 16:57:34 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 80512 Delivered-To: patch@linaro.org Received: by 10.80.170.210 with SMTP id r18csp211701edc; Wed, 2 Nov 2016 09:59:30 -0700 (PDT) X-Received: by 10.99.235.10 with SMTP id t10mr7037532pgh.95.1478105970550; Wed, 02 Nov 2016 09:59:30 -0700 (PDT) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id r5si3357315pap.347.2016.11.02.09.59.30; Wed, 02 Nov 2016 09:59:30 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; dkim=pass header.i=@nifty.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756294AbcKBQ7X (ORCPT + 27 others); Wed, 2 Nov 2016 12:59:23 -0400 Received: from conuserg-09.nifty.com ([210.131.2.76]:27102 "EHLO conuserg-09.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756210AbcKBQ7V (ORCPT ); Wed, 2 Nov 2016 12:59:21 -0400 Received: from grover.sesame (FL1-111-169-71-157.osk.mesh.ad.jp [111.169.71.157]) (authenticated) by conuserg-09.nifty.com with ESMTP id uA2Gw5Zh021211; Thu, 3 Nov 2016 01:58:12 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-09.nifty.com uA2Gw5Zh021211 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1478105893; bh=jUa9+TKqxZjW+dNC6JV+UBA0sBLxOfWvvNmyOGgcOKY=; h=From:To:Cc:Subject:Date:From; b=CkFdAJhrJKphrS1AQOulHZEbV0L3w6STfa81wc8zjGJ9AVYdNxaERnoVTTmxcWkrN kcc2lqRzAPZ3P4eXRDmuQLtXrbtra1ZaJJ/dalG2qxjb1woTqislvAZadodYwL02PW wb85/XQn5VBWTWU8awql85N40gd6XLElvcd5R2pEmWBDcDDP9qjNOpO+cOUpOTw65S NGW5ExrbZS+F8Wn/YAvSJNjTHlIXTQRlk+M5XhguwJ8fBYNoUXmu4faIoeN1RVEhyw WBujptGQQ3AtiknieKE+hnE2p3elS49RuG77BNs9l6xfGieIj9Siig7ZyktFY6Y1O1 KJWeRRRuULBDw== X-Nifty-SrcIP: [111.169.71.157] From: Masahiro Yamada To: Mauro Carvalho Chehab , Mauro Carvalho Chehab , linux-kernel@vger.kernel.org Cc: Jonathan Corbet , Jean Delvare , Markus Elfring , Greg Kroah-Hartman , Masahiro Yamada Subject: [PATCH] coding-style: fix mismatch of jump label name Date: Thu, 3 Nov 2016 01:57:34 +0900 Message-Id: <1478105854-11867-1-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 1.9.1 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit 865a1caa4b6b ("CodingStyle: Clarify and complete chapter 7") renamed the label "out_buffer" to "out_free_buffer", but missed to change this line. Signed-off-by: Masahiro Yamada --- Note: This patch is based on linux-next. The Documentation/CodingStyle was moved to Documentation/process/coding-style.rst Documentation/process/coding-style.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 1.9.1 Reviewed-by: Jean Delvare diff --git a/Documentation/process/coding-style.rst b/Documentation/process/coding-style.rst index 968808be..3e79051 100644 --- a/Documentation/process/coding-style.rst +++ b/Documentation/process/coding-style.rst @@ -475,7 +475,7 @@ The rationale for using gotos is: ... } result = 1; - goto out_buffer; + goto out_free_buffer; } ... out_free_buffer: