From patchwork Thu Oct 10 17:21:32 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Frank_Sch=C3=A4fer?= X-Patchwork-Id: 3017671 Return-Path: X-Original-To: patchwork-linux-media@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 868A19F1E1 for ; Thu, 10 Oct 2013 17:21:36 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 6D40220117 for ; Thu, 10 Oct 2013 17:21:35 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 3F96A200E0 for ; Thu, 10 Oct 2013 17:21:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755807Ab3JJRVZ (ORCPT ); Thu, 10 Oct 2013 13:21:25 -0400 Received: from mail-ee0-f43.google.com ([74.125.83.43]:57141 "EHLO mail-ee0-f43.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750880Ab3JJRVY (ORCPT ); Thu, 10 Oct 2013 13:21:24 -0400 Received: by mail-ee0-f43.google.com with SMTP id e52so1309660eek.2 for ; Thu, 10 Oct 2013 10:21:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=20120113; h=from:to:cc:subject:date:message-id:mime-version:content-type :content-transfer-encoding; bh=8iyKPFd8LawhqrxWfpk0+yPFovKlLEsLQsN3q72WdJE=; b=Plhm7YJG5U/aNx9o3P2i+7RO1/qLzeKQ5col15A8xSYgxKBvCexgnS0vFJWsRr5EF3 Qd+h0Ay0KkTefYPjOC6DU8XeKX3gb7+YTupa6eEcj66Oni+rdPksHniwbtZEigve1Z6h Y0WlYWXr2AY08MMh/FEAXg/aBTE+ywlD3ROAyT8SHxsv3mG5/Z9JQjeaZEhndyyVIawp 0X2ZnZNi0S2DCGPOzrdlyFPxAO6JmH77dQ4yau/ZbyGWi1AqmkNNJfe13AMiEf6MrSYt bYUSwn1EfijFR+nSBofoFwfTE5Cj5u1Fe0bAga+eJSJMDfv2E7MRDRmRjoJ4arelDmgS 1yXw== X-Received: by 10.14.94.195 with SMTP id n43mr526134eef.93.1381425683277; Thu, 10 Oct 2013 10:21:23 -0700 (PDT) Received: from Athlon64X2-5000.site (ip-109-91-213-248.unitymediagroup.de. [109.91.213.248]) by mx.google.com with ESMTPSA id f49sm103931040eec.7.1969.12.31.16.00.00 (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Thu, 10 Oct 2013 10:21:22 -0700 (PDT) From: =?UTF-8?q?Frank=20Sch=C3=A4fer?= To: hans.verkuil@cisco.com Cc: linux-media@vger.kernel.org, =?UTF-8?q?Frank=20Sch=C3=A4fer?= Subject: [PATCH 1/2] v4l2-ctrls: fix typo in header file media/v4l2-ctrls.h Date: Thu, 10 Oct 2013 19:21:32 +0200 Message-Id: <1381425692-5023-1-git-send-email-fschaefer.oss@googlemail.com> X-Mailer: git-send-email 1.7.10.4 MIME-Version: 1.0 Sender: linux-media-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org X-Spam-Status: No, score=-7.0 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, 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 Signed-off-by: Frank Schäfer --- include/media/v4l2-ctrls.h | 2 +- 1 Datei geändert, 1 Zeile hinzugefügt(+), 1 Zeile entfernt(-) diff --git a/include/media/v4l2-ctrls.h b/include/media/v4l2-ctrls.h index 47ada23..16f7f26 100644 --- a/include/media/v4l2-ctrls.h +++ b/include/media/v4l2-ctrls.h @@ -571,7 +571,7 @@ static inline void v4l2_ctrl_lock(struct v4l2_ctrl *ctrl) mutex_lock(ctrl->handler->lock); } -/** v4l2_ctrl_lock() - Helper function to unlock the handler +/** v4l2_ctrl_unlock() - Helper function to unlock the handler * associated with the control. * @ctrl: The control to unlock. */