]> git.notmuchmail.org Git - notmuch/blob - test/corpora/lkml/cur/1382298793.002258:2,
Import notmuch_0.28.2.orig.tar.gz
[notmuch] / test / corpora / lkml / cur / 1382298793.002258:2,
1 From: Joe Perches <joe@perches.com>
2 Subject: [PATCH 31/44] drivers/xen: Remove unnecessary semicolons
3 Date: Sun, 14 Nov 2010 19:04:50 -0800
4 Lines: 20
5 Message-ID: <b3f95cd997859d5d714de322ce17810fe73460cd.1289789605.git.joe@perches.com>
6 References: <cover.1289789604.git.joe@perches.com>
7 Cc: virtualization@lists.osdl.org,
8         Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>,
9         xen-devel@lists.xensource.com, linux-kernel@vger.kernel.org,
10         Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
11 To: Jiri Kosina <trivial@kernel.org>
12 X-From: xen-devel-bounces@lists.xensource.com Mon Nov 15 04:06:05 2010
13 Return-path: <xen-devel-bounces@lists.xensource.com>
14 Envelope-to: gcvxd-xen-devel@m.gmane.org
15 Received: from lists.colo.xensource.com ([70.42.241.110] helo=lists.xensource.com)
16         by lo.gmane.org with esmtp (Exim 4.69)
17         (envelope-from <xen-devel-bounces@lists.xensource.com>)
18         id 1PHpON-0000fV-A9
19         for gcvxd-xen-devel@m.gmane.org; Mon, 15 Nov 2010 04:06:03 +0100
20 Received: from localhost ([127.0.0.1] helo=lists.colo.xensource.com)
21         by lists.xensource.com with esmtp (Exim 4.43)
22         id 1PHpOK-0008Sa-VZ; Sun, 14 Nov 2010 19:06:01 -0800
23 Received: from spam.xensource.com ([70.42.241.90])
24         by lists.xensource.com with esmtp (Exim 4.43) id 1PHpOG-0008R4-01
25         for xen-devel@lists.xensource.com; Sun, 14 Nov 2010 19:05:56 -0800
26 X-ASG-Debug-ID: 1289790355-0739cd1c0001-8pertM
27 Received: from mail.perches.com (mail.perches.com [173.55.12.10]) by
28         spam.xensource.com with ESMTP id XhkGr3VGEwXLx5vl for
29         <xen-devel@lists.xensource.com>;
30         Sun, 14 Nov 2010 19:05:55 -0800 (PST)
31 X-Barracuda-Envelope-From: joe@perches.com
32 X-Barracuda-Apparent-Source-IP: 173.55.12.10
33 Received: from Joe-Laptop.home (unknown [192.168.1.162])
34         by mail.perches.com (Postfix) with ESMTP id 044672436E;
35         Sun, 14 Nov 2010 19:04:23 -0800 (PST)
36 X-ASG-Orig-Subj: [PATCH 31/44] drivers/xen: Remove unnecessary semicolons
37 X-Mailer: git-send-email 1.7.3.1.g432b3.dirty
38 In-Reply-To: <cover.1289789604.git.joe@perches.com>
39 X-Barracuda-Connect: mail.perches.com[173.55.12.10]
40 X-Barracuda-Start-Time: 1289790355
41 X-Barracuda-URL: http://spam.xensource.com:8000/cgi-mod/mark.cgi
42 X-Virus-Scanned: by bsmtpd at xensource.com
43 X-Barracuda-Spam-Score: 0.00
44 X-Barracuda-Spam-Status: No, SCORE=0.00 using per-user scores of TAG_LEVEL=3.5
45         QUARANTINE_LEVEL=6.0 KILL_LEVEL=1000.0 tests=
46 X-Barracuda-Spam-Report: Code version 3.2, rules version 3.2.2.46657
47         Rule breakdown below
48         pts rule name              description
49         ---- ----------------------
50         --------------------------------------------------
51 X-BeenThere: xen-devel@lists.xensource.com
52 X-Mailman-Version: 2.1.5
53 Precedence: list
54 List-Id: Xen developer discussion <xen-devel.lists.xensource.com>
55 List-Unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>,
56         <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
57 List-Post: <mailto:xen-devel@lists.xensource.com>
58 List-Help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
59 List-Subscribe: <http://lists.xensource.com/mailman/listinfo/xen-devel>,
60         <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
61 Sender: xen-devel-bounces@lists.xensource.com
62 Errors-To: xen-devel-bounces@lists.xensource.com
63 Archived-At: <http://permalink.gmane.org/gmane.linux.kernel/1062277>
64
65 Signed-off-by: Joe Perches <joe@perches.com>
66 ---
67  drivers/xen/swiotlb-xen.c |    2 +-
68  1 files changed, 1 insertions(+), 1 deletions(-)
69
70 diff --git a/drivers/xen/swiotlb-xen.c b/drivers/xen/swiotlb-xen.c
71 index 54469c3..65ea21a 100644
72 --- a/drivers/xen/swiotlb-xen.c
73 +++ b/drivers/xen/swiotlb-xen.c
74 @@ -54,7 +54,7 @@ u64 start_dma_addr;
75  
76  static dma_addr_t xen_phys_to_bus(phys_addr_t paddr)
77  {
78 -       return phys_to_machine(XPADDR(paddr)).maddr;;
79 +       return phys_to_machine(XPADDR(paddr)).maddr;
80  }
81  
82  static phys_addr_t xen_bus_to_phys(dma_addr_t baddr)
83 -- 
84 1.7.3.1.g432b3.dirty
85
86