From: "Justin P. Mattock" <justinmattock@gmail.com>
To: trivial@kernel.org
Cc: linux-kernel@vger.kernel.org,
"Justin P. Mattock" <justinmattock@gmail.com>
Subject: [RFC V2 02/21]arch:ia64 Remove extra semi-colon.
Date: Thu, 24 Mar 2011 13:18:21 -0700 [thread overview]
Message-ID: <1300997920-31573-2-git-send-email-justinmattock@gmail.com> (raw)
In-Reply-To: <1300997920-31573-1-git-send-email-justinmattock@gmail.com>
The patch below removes an extra semi-colon from various parts
of the kernel. Please have a look when you have time, and let
me know if its legit or not.
Signed-off-by: Justin P. Mattock <justinmattock@gmail.com>
---
arch/ia64/include/asm/asmmacro.h | 4 ++--
arch/ia64/include/asm/mca_asm.h | 6 +++---
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/arch/ia64/include/asm/asmmacro.h b/arch/ia64/include/asm/asmmacro.h
index 3ab6d75..3c3904b 100644
--- a/arch/ia64/include/asm/asmmacro.h
+++ b/arch/ia64/include/asm/asmmacro.h
@@ -92,12 +92,12 @@ name:
1:{ .mib; \
nop.m 0; \
mov r16=ar.pfs; \
- br.call.sptk.many b7=2f;; \
+ br.call.sptk.many b7=2f; \
}; \
2:{ .mib; \
nop.m 0; \
mov ar.pfs=r16; \
- br.ret.sptk.many b6;; \
+ br.ret.sptk.many b6; \
}
#else
# define FSYS_RETURN br.ret.sptk.many b6
diff --git a/arch/ia64/include/asm/mca_asm.h b/arch/ia64/include/asm/mca_asm.h
index dd2a5b1..d57d3c0 100644
--- a/arch/ia64/include/asm/mca_asm.h
+++ b/arch/ia64/include/asm/mca_asm.h
@@ -46,11 +46,11 @@
* 1. Put 0x7 in bits 61 thru 63.
*/
#define DATA_PA_TO_VA(addr,temp) \
- mov temp = 0x7 ;; \
+ mov temp = 0x7; \
dep addr = temp, addr, 61, 3
#define GET_THIS_PADDR(reg, var) \
- mov reg = IA64_KR(PER_CPU_DATA);; \
+ mov reg = IA64_KR(PER_CPU_DATA); \
addl reg = THIS_CPU(var), reg
/*
@@ -82,7 +82,7 @@
;; \
dep old_psr = 0, old_psr, 32, 32; \
\
- mov ar.rsc = 0 ; \
+ mov ar.rsc = 0; \
;; \
srlz.d; \
mov temp2 = ar.bspstore; \
--
1.7.4.1
next prev parent reply other threads:[~2011-03-24 20:19 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-03-24 20:18 [RFC V2 01/21]arch:arm:mach Remove extra semi-colon Justin P. Mattock
2011-03-24 20:18 ` Justin P. Mattock [this message]
2011-03-24 20:18 ` [RFC V2 03/21]arch:um:drivers:mmapper_kern.c " Justin P. Mattock
2011-03-24 20:18 ` [RFC V2 04/21]arch:s390:hypfs:hypfs.h " Justin P. Mattock
2011-03-24 20:18 ` [RFC V2 05/21]drivers:scsi " Justin P. Mattock
2011-03-24 20:18 ` [RFC V2 06/21]drivers:leds:leds-mc13783.c " Justin P. Mattock
2011-03-24 20:18 ` [RFC V2 07/21]drivers:xen " Justin P. Mattock
2011-03-24 20:18 ` [RFC V2 08/21]drivers:tty:serial:mrst_max3110.c " Justin P. Mattock
2011-03-24 20:18 ` [RFC V2 09/21]drivers:power:intel_mid_battery.c " Justin P. Mattock
2011-03-24 20:18 ` [RFC V2 10/21]drivers:gpio:langwell_gpio.c " Justin P. Mattock
2011-03-24 20:18 ` [RFC V2 11/21]drivers:net " Justin P. Mattock
2011-03-24 20:18 ` [RFC V2 12/21]drivers:video:mxsfb.c " Justin P. Mattock
2011-03-24 20:18 ` [RFC V2 13/21]drivers:i2c:busses:i2c-designware.c " Justin P. Mattock
2011-03-24 20:18 ` [RFC V2 14/21]drivers:staging " Justin P. Mattock
2011-03-24 20:18 ` [RFC V2 15/21]drivers:target " Justin P. Mattock
2011-03-24 20:18 ` [RFC V2 16/21]fs:logfs " Justin P. Mattock
2011-03-24 20:18 ` [RFC V2 17/21]kernel:pm_qos_params.c " Justin P. Mattock
2011-03-24 20:18 ` [RFC V2 18/21]mm:hugetlb.c " Justin P. Mattock
2011-03-24 20:18 ` [RFC V2 19/21]net remove " Justin P. Mattock
2011-03-24 20:18 ` [RFC V2 20/21]security:selinux:selinuxfs.c Remove " Justin P. Mattock
2011-03-24 20:18 ` [RFC V2 21/21]tools:power:x86:turbostat:turbostat.c " Justin P. Mattock
2011-04-10 15:09 ` [RFC V2 01/21]arch:arm:mach " Jiri Kosina
2011-04-10 18:49 ` Justin P. Mattock
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1300997920-31573-2-git-send-email-justinmattock@gmail.com \
--to=justinmattock@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=trivial@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox