From patchwork Fri Feb 13 13:04:42 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Axel Lin X-Patchwork-Id: 439496 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 1EF521402BF for ; Sat, 14 Feb 2015 00:04:50 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752501AbbBMNEt (ORCPT ); Fri, 13 Feb 2015 08:04:49 -0500 Received: from mail-pa0-f45.google.com ([209.85.220.45]:34812 "EHLO mail-pa0-f45.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752466AbbBMNEs (ORCPT ); Fri, 13 Feb 2015 08:04:48 -0500 Received: by mail-pa0-f45.google.com with SMTP id rd3so12027687pab.4 for ; Fri, 13 Feb 2015 05:04:48 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:subject:from:to:cc:date:content-type :mime-version:content-transfer-encoding; bh=PS2Np1ixJUn4DLI0OLddRYiRo/Ac+GlS/hs/4lB4/I8=; b=VtKmWLaXeHHdgDaYL9jIDaXKw0r0AnfVIvLXLg4ss3qIrUwfk5Fczr/UgsFF08liDQ pX/TXjsAHsAqZr/9ypk8Dr9xgQkHk98apphDTH2EzgSgCZWhS03+nTOzNLPdD1Jw/x5r uo288sQq4HoGRXSF+Bv4ZRBiZgosFpa1OWZwwvn7mgUY90OjhoO7JBwP4/cOtlCgPObL i0lG63sLMXuVVD5Wes7uG28nPSjhq2nWzZUdEW1Ct2CmkuB79hxDrmslPQyecTSfnGv0 VbVbXSuFUPnvIHVFA/z7ojMvw+R4rKqDTWsaENA2hhUW6qzCaOru3upu+BwqRVoDZPbT YPgA== X-Gm-Message-State: ALoCoQkjRsaCg70ph3MhSanr1Kz+aBM8OQcwERArZ7AJoI4ATKZAWMo+Ua1grvWRVgCm3+U5z9oT X-Received: by 10.66.100.202 with SMTP id fa10mr15380884pab.36.1423832688121; Fri, 13 Feb 2015 05:04:48 -0800 (PST) Received: from [192.168.0.103] (218-164-102-183.dynamic.hinet.net. [218.164.102.183]) by mx.google.com with ESMTPSA id nd5sm6686367pbc.64.2015.02.13.05.04.45 (version=TLSv1.2 cipher=AES128-GCM-SHA256 bits=128/128); Fri, 13 Feb 2015 05:04:47 -0800 (PST) Message-ID: <1423832682.6895.1.camel@phoenix> Subject: [PATCH] gpio: vf610: Replaces comma between expression statements by semicolon From: Axel Lin To: Linus Walleij Cc: Stefan Agner , Shawn Guo , Alexandre Courbot , "linux-gpio@vger.kernel.org" Date: Fri, 13 Feb 2015 21:04:42 +0800 X-Mailer: Evolution 3.10.4-0ubuntu2 Mime-Version: 1.0 Sender: linux-gpio-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-gpio@vger.kernel.org Signed-off-by: Axel Lin --- drivers/gpio/gpio-vf610.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/drivers/gpio/gpio-vf610.c b/drivers/gpio/gpio-vf610.c index 971c739..7bd9f20 100644 --- a/drivers/gpio/gpio-vf610.c +++ b/drivers/gpio/gpio-vf610.c @@ -244,16 +244,16 @@ static int vf610_gpio_probe(struct platform_device *pdev) gc = &port->gc; gc->of_node = np; gc->dev = dev; - gc->label = "vf610-gpio", - gc->ngpio = VF610_GPIO_PER_PORT, + gc->label = "vf610-gpio"; + gc->ngpio = VF610_GPIO_PER_PORT; gc->base = of_alias_get_id(np, "gpio") * VF610_GPIO_PER_PORT; - gc->request = vf610_gpio_request, - gc->free = vf610_gpio_free, - gc->direction_input = vf610_gpio_direction_input, - gc->get = vf610_gpio_get, - gc->direction_output = vf610_gpio_direction_output, - gc->set = vf610_gpio_set, + gc->request = vf610_gpio_request; + gc->free = vf610_gpio_free; + gc->direction_input = vf610_gpio_direction_input; + gc->get = vf610_gpio_get; + gc->direction_output = vf610_gpio_direction_output; + gc->set = vf610_gpio_set; ret = gpiochip_add(gc); if (ret < 0)