From patchwork Wed Jun 4 12:03:39 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Antonio Ospite X-Patchwork-Id: 4293511 Return-Path: X-Original-To: patchwork-linux-media@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 8EFBBBEEA7 for ; Wed, 4 Jun 2014 12:04:26 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 9A70B202E5 for ; Wed, 4 Jun 2014 12:04:25 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 8A4CD20260 for ; Wed, 4 Jun 2014 12:04:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752709AbaFDMEW (ORCPT ); Wed, 4 Jun 2014 08:04:22 -0400 Received: from smtp205.alice.it ([82.57.200.101]:53075 "EHLO smtp205.alice.it" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752302AbaFDMEV (ORCPT ); Wed, 4 Jun 2014 08:04:21 -0400 Received: from jcn (82.57.82.108) by smtp205.alice.it (8.6.060.28) id 529A5931277CA0E5; Wed, 4 Jun 2014 14:03:57 +0200 Received: from ao2 by jcn with local (Exim 4.82_1-5b7a7c0-XX) (envelope-from ) id 1Ws9vA-00055H-I5; Wed, 04 Jun 2014 14:03:56 +0200 From: Antonio Ospite To: Jiri Kosina Cc: Antonio Ospite , Hans de Goede , linux-media@vger.kernel.org Subject: [PATCH 01/12] trivial: drivers/media/usb/gspca/gspca.c: fix the indentation of a comment Date: Wed, 4 Jun 2014 14:03:39 +0200 Message-Id: <1401883430-19492-2-git-send-email-ao2@ao2.it> X-Mailer: git-send-email 2.0.0 In-Reply-To: <1401883430-19492-1-git-send-email-ao2@ao2.it> References: <1401883430-19492-1-git-send-email-ao2@ao2.it> X-Face: z*RaLf`X<@C75u6Ig9}{oW$H; 1_\2t5)({*|jhM/Vb; ]yA5\I~93>J<_`<4)A{':UrE 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.5 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, 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 Fix indentation of a comment, put it on the same level of the code it refers to. Signed-off-by: Antonio Ospite Cc: Hans de Goede Cc: linux-media@vger.kernel.org --- drivers/media/usb/gspca/gspca.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/media/usb/gspca/gspca.c b/drivers/media/usb/gspca/gspca.c index f3a7ace..f4bae98 100644 --- a/drivers/media/usb/gspca/gspca.c +++ b/drivers/media/usb/gspca/gspca.c @@ -870,9 +870,8 @@ static int gspca_init_transfer(struct gspca_dev *gspca_dev) ep_tb[0].alt = gspca_dev->alt; alt_idx = 1; } else { - - /* else, compute the minimum bandwidth - * and build the endpoint table */ + /* else, compute the minimum bandwidth + * and build the endpoint table */ alt_idx = build_isoc_ep_tb(gspca_dev, intf, ep_tb); if (alt_idx <= 0) { pr_err("no transfer endpoint found\n");