From patchwork Tue Nov 20 05:22:37 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 12960 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id ED35423FC2 for ; Tue, 20 Nov 2012 05:28:57 +0000 (UTC) Received: from mail-ie0-f180.google.com (mail-ie0-f180.google.com [209.85.223.180]) by fiordland.canonical.com (Postfix) with ESMTP id 8C289A18F7F for ; Tue, 20 Nov 2012 05:28:57 +0000 (UTC) Received: by mail-ie0-f180.google.com with SMTP id e10so7671712iej.11 for ; Mon, 19 Nov 2012 21:28:57 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-forwarded-to:x-forwarded-for:delivered-to:received-spf:from:to:cc :subject:date:message-id:x-mailer:in-reply-to:references :x-gm-message-state; bh=sNSGf2bA2y/MvgWK4JI85MKeMltejaIxdxgox0h+/hs=; b=nROziWjk+GD2A8r3K2gDketeQwNHzd9gRtI757CC5QMucsK5eqF7BsreaTV1XNFNeC h3FIjuLnhXQBvxzaAV80RVv/RD+VcBEziyto0ZKuzz/59p3UI/KJ0+n6aIPhBuw479lo wm51RY77c9CjpwHg14Czlt93HqB/VuPf5n+MhiN8HuL6ieUD9pEFxQesHOtZaqJv/cH6 68iHF79lyNA2xdQhlbIosZ4w2vyr5suk7fo98ftBjeUR3hwQVy+1tGJWImSusNnDfn+/ EI62Z00XgoGn0Yp2OXTjej5pUv7mOK9bJdOEyay7jwKSY0Y3m833BSnM9LmmqPfWk8bD IsPw== Received: by 10.50.213.34 with SMTP id np2mr8840520igc.57.1353389337294; Mon, 19 Nov 2012 21:28:57 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.50.67.148 with SMTP id n20csp271258igt; Mon, 19 Nov 2012 21:28:56 -0800 (PST) Received: by 10.68.247.39 with SMTP id yb7mr40368982pbc.15.1353389336730; Mon, 19 Nov 2012 21:28:56 -0800 (PST) Received: from mail-pa0-f41.google.com (mail-pa0-f41.google.com [209.85.220.41]) by mx.google.com with ESMTPS id t9si16376957paz.171.2012.11.19.21.28.56 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 19 Nov 2012 21:28:56 -0800 (PST) Received-SPF: neutral (google.com: 209.85.220.41 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) client-ip=209.85.220.41; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.220.41 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) smtp.mail=sachin.kamat@linaro.org Received: by mail-pa0-f41.google.com with SMTP id fa10so3529980pad.28 for ; Mon, 19 Nov 2012 21:28:56 -0800 (PST) Received: by 10.68.132.197 with SMTP id ow5mr46529565pbb.40.1353389336512; Mon, 19 Nov 2012 21:28:56 -0800 (PST) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id d2sm7429712paw.19.2012.11.19.21.28.53 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 19 Nov 2012 21:28:55 -0800 (PST) From: Sachin Kamat To: linux-kernel@vger.kernel.org Cc: myungjoo.ham@samsung.com, cw00.choi@samsung.com, sachin.kamat@linaro.org, patches@linaro.org Subject: [PATCH 1/7] extcon: max8997: Fix checkpatch error Date: Tue, 20 Nov 2012 10:52:37 +0530 Message-Id: <1353388963-23761-2-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1353388963-23761-1-git-send-email-sachin.kamat@linaro.org> References: <1353388963-23761-1-git-send-email-sachin.kamat@linaro.org> X-Gm-Message-State: ALoCoQljh7rwP1S+M3mZ87sBv9/kYaIo6qlXpElbpP9Tx2hR6Vf9B8zPb/s6KippU6vNToFclrWa Fixes the following checkpatch error: ERROR: space required after that ',' (ctx:VxV) 460: FILE: extcon/extcon-max8997.c:460: ret = request_threaded_irq(virq, NULL,max8997_muic_irq_handler, ^ Signed-off-by: Sachin Kamat --- drivers/extcon/extcon-max8997.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/extcon/extcon-max8997.c b/drivers/extcon/extcon-max8997.c index 77b66b0..c364794 100644 --- a/drivers/extcon/extcon-max8997.c +++ b/drivers/extcon/extcon-max8997.c @@ -457,7 +457,7 @@ static int __devinit max8997_muic_probe(struct platform_device *pdev) goto err_irq; muic_irq->virq = virq; - ret = request_threaded_irq(virq, NULL,max8997_muic_irq_handler, + ret = request_threaded_irq(virq, NULL, max8997_muic_irq_handler, 0, muic_irq->name, info); if (ret) { dev_err(&pdev->dev,