mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 19:08:09 +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.
58 lines
2.7 KiB
Text
58 lines
2.7 KiB
Text
From: Joe Perches <joe-6d6DIl74uiNBDgjK7y7TUQ@public.gmane.org>
|
|
Subject: [PATCH 06/44] drivers/i2c: Remove unnecessary semicolons
|
|
Date: Sun, 14 Nov 2010 19:04:25 -0800
|
|
Lines: 21
|
|
Message-ID: <04cfa2beee1ed9656e550bb13076b9c57899542e.1289789604.git.joe@perches.com>
|
|
References: <cover.1289789604.git.joe@perches.com>
|
|
Cc: "Jean Delvare (PC drivers, core)" <khali-PUYAD+kWke1g9hUCZPvPmw@public.gmane.org>,
|
|
"Ben Dooks (embedded platforms)" <ben-linux-elnMNo+KYs3YtjvyW6yDsg@public.gmane.org>,
|
|
linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
|
|
To: Jiri Kosina <trivial-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>
|
|
X-From: linux-i2c-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org Mon Nov 15 04:15:07 2010
|
|
Return-path: <linux-i2c-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
|
|
Envelope-to: gldi-i2c-1-1dZseelyfdZg9hUCZPvPmw@public.gmane.org
|
|
Received: from vger.kernel.org ([209.132.180.67])
|
|
by lo.gmane.org with esmtp (Exim 4.69)
|
|
(envelope-from <linux-i2c-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>)
|
|
id 1PHpX8-0005AO-Oy
|
|
for gldi-i2c-1-1dZseelyfdZg9hUCZPvPmw@public.gmane.org; Mon, 15 Nov 2010 04:15:07 +0100
|
|
Received: (majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org) by vger.kernel.org via listexpand
|
|
id S932641Ab0KODOb (ORCPT <rfc822;gldi-i2c-1@m.gmane.org>);
|
|
Sun, 14 Nov 2010 22:14:31 -0500
|
|
Received: from mail.perches.com ([173.55.12.10]:1138 "EHLO mail.perches.com"
|
|
rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP
|
|
id S932562Ab0KODFa (ORCPT <rfc822;linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.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 39B6A2436C;
|
|
Sun, 14 Nov 2010 19:03:58 -0800 (PST)
|
|
X-Mailer: git-send-email 1.7.3.1.g432b3.dirty
|
|
In-Reply-To: <cover.1289789604.git.joe-6d6DIl74uiNBDgjK7y7TUQ@public.gmane.org>
|
|
Sender: linux-i2c-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
|
|
Precedence: bulk
|
|
List-ID: <linux-i2c.vger.kernel.org>
|
|
X-Mailing-List: linux-i2c-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
|
|
|
|
Signed-off-by: Joe Perches <joe-6d6DIl74uiNBDgjK7y7TUQ@public.gmane.org>
|
|
---
|
|
drivers/i2c/busses/i2c-designware.c | 2 +-
|
|
1 files changed, 1 insertions(+), 1 deletions(-)
|
|
|
|
diff --git a/drivers/i2c/busses/i2c-designware.c b/drivers/i2c/busses/i2c-designware.c
|
|
index b664ed8..a93922d 100644
|
|
--- a/drivers/i2c/busses/i2c-designware.c
|
|
+++ b/drivers/i2c/busses/i2c-designware.c
|
|
@@ -390,7 +390,7 @@ i2c_dw_xfer_msg(struct dw_i2c_dev *dev)
|
|
int tx_limit, rx_limit;
|
|
u32 addr = msgs[dev->msg_write_idx].addr;
|
|
u32 buf_len = dev->tx_buf_len;
|
|
- u8 *buf = dev->tx_buf;;
|
|
+ u8 *buf = dev->tx_buf;
|
|
|
|
intr_mask = DW_IC_INTR_DEFAULT_MASK;
|
|
|
|
--
|
|
1.7.3.1.g432b3.dirty
|
|
|
|
|
|
|