mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
e08f5f76e4
These 210 messages are in several long threads, which is good for testing our threading code, and may be useful just as a larger test corpus in the future.
56 lines
2.2 KiB
Text
56 lines
2.2 KiB
Text
From: Joe Perches <joe@perches.com>
|
|
Subject: [PATCH 05/44] drivers/gpio: Remove unnecessary semicolons
|
|
Date: Sun, 14 Nov 2010 19:04:24 -0800
|
|
Lines: 21
|
|
Message-ID: <a04f2c16a94e214f0a1828c4cea95f815a816853.1289789604.git.joe@perches.com>
|
|
References: <cover.1289789604.git.joe@perches.com>
|
|
Cc: linux-kernel@vger.kernel.org
|
|
To: Jiri Kosina <trivial@kernel.org>
|
|
X-From: linux-kernel-owner@vger.kernel.org Mon Nov 15 04:15:13 2010
|
|
Return-path: <linux-kernel-owner@vger.kernel.org>
|
|
Envelope-to: glk-linux-kernel-3@lo.gmane.org
|
|
Received: from vger.kernel.org ([209.132.180.67])
|
|
by lo.gmane.org with esmtp (Exim 4.69)
|
|
(envelope-from <linux-kernel-owner@vger.kernel.org>)
|
|
id 1PHpX9-0005AO-Pv
|
|
for glk-linux-kernel-3@lo.gmane.org; Mon, 15 Nov 2010 04:15:08 +0100
|
|
Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand
|
|
id S933055Ab0KODOp (ORCPT <rfc822;glk-linux-kernel-3@m.gmane.org>);
|
|
Sun, 14 Nov 2010 22:14:45 -0500
|
|
Received: from mail.perches.com ([173.55.12.10]:1136 "EHLO mail.perches.com"
|
|
rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP
|
|
id S932550Ab0KODFa (ORCPT <rfc822;linux-kernel@vger.kernel.org>);
|
|
Sun, 14 Nov 2010 22:05:30 -0500
|
|
Received: from Joe-Laptop.home (unknown [192.168.1.162])
|
|
by mail.perches.com (Postfix) with ESMTP id A81642436F;
|
|
Sun, 14 Nov 2010 19:03:57 -0800 (PST)
|
|
X-Mailer: git-send-email 1.7.3.1.g432b3.dirty
|
|
In-Reply-To: <cover.1289789604.git.joe@perches.com>
|
|
Sender: linux-kernel-owner@vger.kernel.org
|
|
Precedence: bulk
|
|
List-ID: <linux-kernel.vger.kernel.org>
|
|
X-Mailing-List: linux-kernel@vger.kernel.org
|
|
|
|
Signed-off-by: Joe Perches <joe@perches.com>
|
|
---
|
|
drivers/gpio/langwell_gpio.c | 2 +-
|
|
1 files changed, 1 insertions(+), 1 deletions(-)
|
|
|
|
diff --git a/drivers/gpio/langwell_gpio.c b/drivers/gpio/langwell_gpio.c
|
|
index 64db9dc..ed05ecb 100644
|
|
--- a/drivers/gpio/langwell_gpio.c
|
|
+++ b/drivers/gpio/langwell_gpio.c
|
|
@@ -122,7 +122,7 @@ static int lnw_gpio_direction_output(struct gpio_chip *chip,
|
|
lnw_gpio_set(chip, offset, value);
|
|
spin_lock_irqsave(&lnw->lock, flags);
|
|
value = readl(gpdr);
|
|
- value |= BIT(offset % 32);;
|
|
+ value |= BIT(offset % 32);
|
|
writel(value, gpdr);
|
|
spin_unlock_irqrestore(&lnw->lock, flags);
|
|
return 0;
|
|
--
|
|
1.7.3.1.g432b3.dirty
|
|
|
|
|
|
|