From patchwork Sat Mar 26 01:53:49 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dan Carpenter X-Patchwork-Id: 6213 Return-path: Envelope-to: mchehab@pedra Delivery-date: Sat, 26 Mar 2011 08:12:48 -0300 Received: from mchehab by pedra with local (Exim 4.72) (envelope-from ) id 1Q3RQG-0002jN-JX for mchehab@pedra; Sat, 26 Mar 2011 08:12:48 -0300 Received: from casper.infradead.org [85.118.1.10] by pedra with IMAP (fetchmail-6.3.17) for (single-drop); Sat, 26 Mar 2011 08:12:48 -0300 (BRT) Received: from vger.kernel.org ([209.132.180.67]) by casper.infradead.org with esmtp (Exim 4.72 #1 (Red Hat Linux)) id 1Q3Iho-0003KV-CG; Sat, 26 Mar 2011 01:54:20 +0000 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934256Ab1CZByS (ORCPT + 1 other); Fri, 25 Mar 2011 21:54:18 -0400 Received: from mail-px0-f179.google.com ([209.85.212.179]:57725 "EHLO mail-px0-f179.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934174Ab1CZByR (ORCPT ); Fri, 25 Mar 2011 21:54:17 -0400 Received: by pxi2 with SMTP id 2so326338pxi.10 for ; Fri, 25 Mar 2011 18:54:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:date:from:to:cc:subject:message-id:mime-version :content-type:content-disposition:user-agent; bh=QzvU1PFO9ntHGiJgWqI7AvhV2eLPJOllS7DcZjOsDvY=; b=GxowyCKxJZGGOZHaCfTxh2IoBJpspXy0/96lAdX6UxBP1+eyV6LYLMHz6QFvz5QpzH qwaiL6i1bLbfpi6mNkwWfS5TQawXLzUZYyOGJYxDNfxJHfxOduyiLJEYmqHRy5jE09Mr KrUPlhrOAJRZ4BeV+Y5aXAHxbuKW049UkC754= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:mime-version:content-type :content-disposition:user-agent; b=W01YoNxw+bqDbL1ql+1bpfOIAgBHDWep5BNI/JtQa7Fj8UY5Rr1eqpvYiGO8xe6zAU 31Nqfzfh+VWHaKkBQrPFh0DhNNiZNU5cahMkxB0+q0pxkOFYaC5UsG6d4gHl9lNh9iNs cpmH/EKtQ2K0MQ9DZLqzgLB3QAQ/xRUTqHPDY= Received: by 10.142.2.3 with SMTP id 3mr1208140wfb.172.1301104456295; Fri, 25 Mar 2011 18:54:16 -0700 (PDT) Received: from bicker ([212.49.88.34]) by mx.google.com with ESMTPS id w32sm2083558wfh.7.2011.03.25.18.54.10 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 25 Mar 2011 18:54:15 -0700 (PDT) Date: Sat, 26 Mar 2011 04:53:49 +0300 From: Dan Carpenter To: Mike Isely Cc: Mauro Carvalho Chehab , linux-media@vger.kernel.org, kernel-janitors@vger.kernel.org Subject: [PATCH 4/6] [media] pvrusb2: fix camel case variables Message-ID: <20110326015349.GI2008@bicker> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.20 (2009-06-14) Precedence: bulk List-ID: X-Mailing-List: linux-media@vger.kernel.org Sender: This patch renames some variables to bring them more in line with kernel CodingStyle. arrPtr => arr arrSize => arr_size bufPtr => buf bufSize => buf_size Signed-off-by: Dan Carpenter Nacked-By: Mike Isely --- To unsubscribe from this list: send the line "unsubscribe linux-media" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/drivers/media/video/pvrusb2/pvrusb2-std.c b/drivers/media/video/pvrusb2/pvrusb2-std.c index b214f77..d5a679f 100644 --- a/drivers/media/video/pvrusb2/pvrusb2-std.c +++ b/drivers/media/video/pvrusb2/pvrusb2-std.c @@ -115,26 +115,26 @@ static const struct std_name std_items[] = { * Search an array of std_name structures and return a pointer to the * element with the matching name. */ -static const struct std_name *find_std_name(const struct std_name *arrPtr, - unsigned int arrSize, - const char *bufPtr, - unsigned int bufSize) +static const struct std_name *find_std_name(const struct std_name *arr, + unsigned int arr_size, + const char *buf, + unsigned int buf_size) { unsigned int idx; const struct std_name *p; - for (idx = 0; idx < arrSize; idx++) { - p = arrPtr + idx; - if (strlen(p->name) != bufSize) + for (idx = 0; idx < arr_size; idx++) { + p = arr + idx; + if (strlen(p->name) != buf_size) continue; - if (!memcmp(bufPtr, p->name, bufSize)) + if (!memcmp(buf, p->name, buf_size)) return p; } return NULL; } -int pvr2_std_str_to_id(v4l2_std_id *idPtr, const char *bufPtr, - unsigned int bufSize) +int pvr2_std_str_to_id(v4l2_std_id *idPtr, const char *buf, + unsigned int buf_size) { v4l2_std_id id = 0; v4l2_std_id cmsk = 0; @@ -144,27 +144,27 @@ int pvr2_std_str_to_id(v4l2_std_id *idPtr, const char *bufPtr, char ch; const struct std_name *sp; - while (bufSize) { + while (buf_size) { if (!mMode) { cnt = 0; - while ((cnt < bufSize) && (bufPtr[cnt] != '-')) + while ((cnt < buf_size) && (buf[cnt] != '-')) cnt++; - if (cnt >= bufSize) + if (cnt >= buf_size) return 0; /* No more characters */ sp = find_std_name(std_groups, ARRAY_SIZE(std_groups), - bufPtr, cnt); + buf, cnt); if (!sp) return 0; /* Illegal color system name */ cnt++; - bufPtr += cnt; - bufSize -= cnt; + buf += cnt; + buf_size -= cnt; mMode = !0; cmsk = sp->id; continue; } cnt = 0; - while (cnt < bufSize) { - ch = bufPtr[cnt]; + while (cnt < buf_size) { + ch = buf[cnt]; if (ch == ';') { mMode = 0; break; @@ -174,7 +174,7 @@ int pvr2_std_str_to_id(v4l2_std_id *idPtr, const char *bufPtr, cnt++; } sp = find_std_name(std_items, ARRAY_SIZE(std_items), - bufPtr, cnt); + buf, cnt); if (!sp) return 0; /* Illegal modulation system ID */ t = sp->id & cmsk; @@ -182,10 +182,10 @@ int pvr2_std_str_to_id(v4l2_std_id *idPtr, const char *bufPtr, return 0; /* Specific color + modulation system illegal */ id |= t; - if (cnt < bufSize) + if (cnt < buf_size) cnt++; - bufPtr += cnt; - bufSize -= cnt; + buf += cnt; + buf_size -= cnt; } if (idPtr) @@ -193,7 +193,7 @@ int pvr2_std_str_to_id(v4l2_std_id *idPtr, const char *bufPtr, return !0; } -unsigned int pvr2_std_id_to_str(char *bufPtr, unsigned int bufSize, +unsigned int pvr2_std_id_to_str(char *buf, unsigned int buf_size, v4l2_std_id id) { unsigned int idx1, idx2; @@ -212,26 +212,26 @@ unsigned int pvr2_std_id_to_str(char *bufPtr, unsigned int bufSize, continue; if (!gfl) { if (cfl) { - c2 = scnprintf(bufPtr, bufSize, ";"); + c2 = scnprintf(buf, buf_size, ";"); c1 += c2; - bufSize -= c2; - bufPtr += c2; + buf_size -= c2; + buf += c2; } cfl = !0; - c2 = scnprintf(bufPtr, bufSize, + c2 = scnprintf(buf, buf_size, "%s-", gp->name); gfl = !0; } else { - c2 = scnprintf(bufPtr, bufSize, "/"); + c2 = scnprintf(buf, buf_size, "/"); } c1 += c2; - bufSize -= c2; - bufPtr += c2; - c2 = scnprintf(bufPtr, bufSize, + buf_size -= c2; + buf += c2; + c2 = scnprintf(buf, buf_size, ip->name); c1 += c2; - bufSize -= c2; - bufPtr += c2; + buf_size -= c2; + buf += c2; } } return c1;