linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 133/199] arch/arm/boot/bootp/bootp.lds: Checkpatch cleanup
       [not found] <1274644549-24952-1-git-send-email-andrea.gelmini@gelma.net>
@ 2010-05-23 19:55 ` Andrea Gelmini
  2010-05-23 19:55 ` [PATCH 134/199] arch/arm/mach-clps711x/Makefile.boot: " Andrea Gelmini
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 8+ messages in thread
From: Andrea Gelmini @ 2010-05-23 19:55 UTC (permalink / raw)
  To: linux-arm-kernel

arch/arm/boot/bootp/bootp.lds:22: ERROR: trailing whitespace

Signed-off-by: Andrea Gelmini <andrea.gelmini@gelma.net>
---
 arch/arm/boot/bootp/bootp.lds |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/arm/boot/bootp/bootp.lds b/arch/arm/boot/bootp/bootp.lds
index 8e3d81c..fc54394 100644
--- a/arch/arm/boot/bootp/bootp.lds
+++ b/arch/arm/boot/bootp/bootp.lds
@@ -19,7 +19,7 @@ SECTIONS
    initrd_size = initrd_end - initrd_start;
    _etext = .;
   }
-  
+
   .stab 0 : { *(.stab) }
   .stabstr 0 : { *(.stabstr) }
   .stab.excl 0 : { *(.stab.excl) }
-- 
1.7.1.251.gf80a2

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 134/199] arch/arm/mach-clps711x/Makefile.boot: Checkpatch cleanup
       [not found] <1274644549-24952-1-git-send-email-andrea.gelmini@gelma.net>
  2010-05-23 19:55 ` [PATCH 133/199] arch/arm/boot/bootp/bootp.lds: Checkpatch cleanup Andrea Gelmini
@ 2010-05-23 19:55 ` Andrea Gelmini
  2010-05-23 19:55 ` [PATCH 135/199] arch/arm/mach-footbridge/ebsa285-pci.c: " Andrea Gelmini
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 8+ messages in thread
From: Andrea Gelmini @ 2010-05-23 19:55 UTC (permalink / raw)
  To: linux-arm-kernel

arch/arm/mach-clps711x/Makefile.boot:2: ERROR: trailing whitespace

Signed-off-by: Andrea Gelmini <andrea.gelmini@gelma.net>
---
 arch/arm/mach-clps711x/Makefile.boot |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/arch/arm/mach-clps711x/Makefile.boot b/arch/arm/mach-clps711x/Makefile.boot
index d3d2933..a51fcef 100644
--- a/arch/arm/mach-clps711x/Makefile.boot
+++ b/arch/arm/mach-clps711x/Makefile.boot
@@ -1,7 +1,6 @@
 # The standard locations for stuff on CLPS711x type processors
-   zreladdr-y				:= 0xc0028000 
+   zreladdr-y				:= 0xc0028000
 params_phys-y				:= 0xc0000100
 # Should probably have some agreement on these...
 initrd_phys-$(CONFIG_ARCH_P720T)	:= 0xc0400000
 initrd_phys-$(CONFIG_ARCH_CDB89712)	:= 0x00700000
-
-- 
1.7.1.251.gf80a2

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 135/199] arch/arm/mach-footbridge/ebsa285-pci.c: Checkpatch cleanup
       [not found] <1274644549-24952-1-git-send-email-andrea.gelmini@gelma.net>
  2010-05-23 19:55 ` [PATCH 133/199] arch/arm/boot/bootp/bootp.lds: Checkpatch cleanup Andrea Gelmini
  2010-05-23 19:55 ` [PATCH 134/199] arch/arm/mach-clps711x/Makefile.boot: " Andrea Gelmini
@ 2010-05-23 19:55 ` Andrea Gelmini
  2010-05-23 19:55 ` [PATCH 136/199] arch/arm/mach-h720x/common.h: " Andrea Gelmini
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 8+ messages in thread
From: Andrea Gelmini @ 2010-05-23 19:55 UTC (permalink / raw)
  To: linux-arm-kernel

arch/arm/mach-footbridge/ebsa285-pci.c:22: ERROR: switch and case should be at the same indent

Signed-off-by: Andrea Gelmini <andrea.gelmini@gelma.net>
---
 arch/arm/mach-footbridge/ebsa285-pci.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/arm/mach-footbridge/ebsa285-pci.c b/arch/arm/mach-footbridge/ebsa285-pci.c
index 720c0ba..e5ab5bd 100644
--- a/arch/arm/mach-footbridge/ebsa285-pci.c
+++ b/arch/arm/mach-footbridge/ebsa285-pci.c
@@ -20,9 +20,9 @@ static int __init ebsa285_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
 	if (dev->vendor == PCI_VENDOR_ID_CONTAQ &&
 	    dev->device == PCI_DEVICE_ID_CONTAQ_82C693)
 		switch (PCI_FUNC(dev->devfn)) {
-			case 1:	return 14;
-			case 2:	return 15;
-			case 3:	return 12;
+		case 1:	return 14;
+		case 2:	return 15;
+		case 3:	return 12;
 		}
 
 	return irqmap_ebsa285[(slot + pin) & 3];
-- 
1.7.1.251.gf80a2

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 136/199] arch/arm/mach-h720x/common.h: Checkpatch cleanup
       [not found] <1274644549-24952-1-git-send-email-andrea.gelmini@gelma.net>
                   ` (2 preceding siblings ...)
  2010-05-23 19:55 ` [PATCH 135/199] arch/arm/mach-footbridge/ebsa285-pci.c: " Andrea Gelmini
@ 2010-05-23 19:55 ` Andrea Gelmini
  2010-05-23 19:55 ` [PATCH 137/199] arch/arm/mach-sa1100/leds.c: " Andrea Gelmini
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 8+ messages in thread
From: Andrea Gelmini @ 2010-05-23 19:55 UTC (permalink / raw)
  To: linux-arm-kernel

arch/arm/mach-h720x/common.h:17: WARNING: space prohibited between function name and open parenthesis '('
arch/arm/mach-h720x/common.h:23: WARNING: space prohibited between function name and open parenthesis '('

Signed-off-by: Andrea Gelmini <andrea.gelmini@gelma.net>
---
 arch/arm/mach-h720x/common.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/arm/mach-h720x/common.h b/arch/arm/mach-h720x/common.h
index d8798db..7dd5fa6 100644
--- a/arch/arm/mach-h720x/common.h
+++ b/arch/arm/mach-h720x/common.h
@@ -14,13 +14,13 @@
  */
 
 extern unsigned long h720x_gettimeoffset(void);
-extern void __init h720x_init_irq (void);
+extern void __init h720x_init_irq(void);
 extern void __init h720x_map_io(void);
 
 #ifdef CONFIG_ARCH_H7202
 extern struct sys_timer h7202_timer;
 extern void __init init_hw_h7202(void);
-extern void __init h7202_init_irq (void);
+extern void __init h7202_init_irq(void);
 extern void __init h7202_init_time(void);
 #endif
 
-- 
1.7.1.251.gf80a2

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 137/199] arch/arm/mach-sa1100/leds.c: Checkpatch cleanup
       [not found] <1274644549-24952-1-git-send-email-andrea.gelmini@gelma.net>
                   ` (3 preceding siblings ...)
  2010-05-23 19:55 ` [PATCH 136/199] arch/arm/mach-h720x/common.h: " Andrea Gelmini
@ 2010-05-23 19:55 ` Andrea Gelmini
  2010-05-23 19:55 ` [PATCH 138/199] arch/arm/mach-shark/pci.c: " Andrea Gelmini
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 8+ messages in thread
From: Andrea Gelmini @ 2010-05-23 19:55 UTC (permalink / raw)
  To: linux-arm-kernel

arch/arm/mach-sa1100/leds.c:21: ERROR: code indent should use tabs where possible
arch/arm/mach-sa1100/leds.c:21: WARNING: please, no space before tabs
arch/arm/mach-sa1100/leds.c:22: ERROR: code indent should use tabs where possible
arch/arm/mach-sa1100/leds.c:22: WARNING: please, no space before tabs
arch/arm/mach-sa1100/leds.c:24: ERROR: code indent should use tabs where possible
arch/arm/mach-sa1100/leds.c:24: WARNING: please, no space before tabs

Signed-off-by: Andrea Gelmini <andrea.gelmini@gelma.net>
---
 arch/arm/mach-sa1100/leds.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/arm/mach-sa1100/leds.c b/arch/arm/mach-sa1100/leds.c
index 4cf7c56..bbfe197 100644
--- a/arch/arm/mach-sa1100/leds.c
+++ b/arch/arm/mach-sa1100/leds.c
@@ -2,7 +2,7 @@
  * linux/arch/arm/mach-sa1100/leds.c
  *
  * SA1100 LEDs dispatcher
- * 
+ *
  * Copyright (C) 2001 Nicolas Pitre
  */
 #include <linux/compiler.h>
@@ -18,10 +18,10 @@ sa1100_leds_init(void)
 {
 	if (machine_is_assabet())
 		leds_event = assabet_leds_event;
- 	if (machine_is_consus())
- 	        leds_event = consus_leds_event;
+	if (machine_is_consus())
+		leds_event = consus_leds_event;
 	if (machine_is_badge4())
-	  	leds_event = badge4_leds_event;
+		leds_event = badge4_leds_event;
 	if (machine_is_brutus())
 		leds_event = brutus_leds_event;
 	if (machine_is_cerf())
-- 
1.7.1.251.gf80a2

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 138/199] arch/arm/mach-shark/pci.c: Checkpatch cleanup
       [not found] <1274644549-24952-1-git-send-email-andrea.gelmini@gelma.net>
                   ` (4 preceding siblings ...)
  2010-05-23 19:55 ` [PATCH 137/199] arch/arm/mach-sa1100/leds.c: " Andrea Gelmini
@ 2010-05-23 19:55 ` Andrea Gelmini
  2010-05-23 19:55 ` [PATCH 139/199] arch/arm/nwfpe/ChangeLog: " Andrea Gelmini
  2010-05-23 19:55 ` [PATCH 140/199] arch/arm/nwfpe/fpsr.h: " Andrea Gelmini
  7 siblings, 0 replies; 8+ messages in thread
From: Andrea Gelmini @ 2010-05-23 19:55 UTC (permalink / raw)
  To: linux-arm-kernel

arch/arm/mach-shark/pci.c:19: ERROR: trailing statements should be on next line
arch/arm/mach-shark/pci.c:20: ERROR: trailing statements should be on next line
arch/arm/mach-shark/pci.c:21: ERROR: trailing statements should be on next line
arch/arm/mach-shark/pci.c:24: WARNING: externs should be avoided in .c files
arch/arm/mach-shark/pci.c:28: WARNING: please, no space before tabs

Signed-off-by: Andrea Gelmini <andrea.gelmini@gelma.net>
---
 arch/arm/mach-shark/pci.c |   11 +++++++----
 1 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/arch/arm/mach-shark/pci.c b/arch/arm/mach-shark/pci.c
index 37a7112..89d175c 100644
--- a/arch/arm/mach-shark/pci.c
+++ b/arch/arm/mach-shark/pci.c
@@ -16,16 +16,19 @@
 static int __init shark_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
 {
 	if (dev->bus->number == 0)
-		if (dev->devfn == 0) return 255;
-		else return 11;
-	else return 255;
+		if (dev->devfn == 0)
+			return 255;
+		else
+			return 11;
+	else
+		return 255;
 }
 
 extern void __init via82c505_preinit(void);
 
 static struct hw_pci shark_pci __initdata = {
 	.setup		= via82c505_setup,
-	.swizzle     	= pci_std_swizzle,
+	.swizzle	= pci_std_swizzle,
 	.map_irq	= shark_map_irq,
 	.nr_controllers = 1,
 	.scan		= via82c505_scan_bus,
-- 
1.7.1.251.gf80a2

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 139/199] arch/arm/nwfpe/ChangeLog: Checkpatch cleanup
       [not found] <1274644549-24952-1-git-send-email-andrea.gelmini@gelma.net>
                   ` (5 preceding siblings ...)
  2010-05-23 19:55 ` [PATCH 138/199] arch/arm/mach-shark/pci.c: " Andrea Gelmini
@ 2010-05-23 19:55 ` Andrea Gelmini
  2010-05-23 19:55 ` [PATCH 140/199] arch/arm/nwfpe/fpsr.h: " Andrea Gelmini
  7 siblings, 0 replies; 8+ messages in thread
From: Andrea Gelmini @ 2010-05-23 19:55 UTC (permalink / raw)
  To: linux-arm-kernel

arch/arm/nwfpe/ChangeLog:75: ERROR: trailing whitespace

Signed-off-by: Andrea Gelmini <andrea.gelmini@gelma.net>
---
 arch/arm/nwfpe/ChangeLog |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/arm/nwfpe/ChangeLog b/arch/arm/nwfpe/ChangeLog
index eeb5a7c..fa8028b 100644
--- a/arch/arm/nwfpe/ChangeLog
+++ b/arch/arm/nwfpe/ChangeLog
@@ -72,7 +72,7 @@
 1998-11-23  Scott Bambrough  <scottb@netwinder.org>
 
 	* README.FPE - fix typo in description of lfm/sfm instructions
-	* NOTES - Added file to describe known bugs/problems 
+	* NOTES - Added file to describe known bugs/problems
 	* fpmodule.c - Changed version number to 0.94
 
 1998-11-20  Scott Bambrough  <scottb@netwinder.org>
-- 
1.7.1.251.gf80a2

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH 140/199] arch/arm/nwfpe/fpsr.h: Checkpatch cleanup
       [not found] <1274644549-24952-1-git-send-email-andrea.gelmini@gelma.net>
                   ` (6 preceding siblings ...)
  2010-05-23 19:55 ` [PATCH 139/199] arch/arm/nwfpe/ChangeLog: " Andrea Gelmini
@ 2010-05-23 19:55 ` Andrea Gelmini
  7 siblings, 0 replies; 8+ messages in thread
From: Andrea Gelmini @ 2010-05-23 19:55 UTC (permalink / raw)
  To: linux-arm-kernel

arch/arm/nwfpe/fpsr.h:33: ERROR: trailing whitespace

Signed-off-by: Andrea Gelmini <andrea.gelmini@gelma.net>
---
 arch/arm/nwfpe/fpsr.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/arm/nwfpe/fpsr.h b/arch/arm/nwfpe/fpsr.h
index 859b300..bd425dc 100644
--- a/arch/arm/nwfpe/fpsr.h
+++ b/arch/arm/nwfpe/fpsr.h
@@ -30,7 +30,7 @@ one byte.
 	EXCEPTION TRAP ENABLE BYTE
 	SYSTEM CONTROL BYTE
 	CUMULATIVE EXCEPTION FLAGS BYTE
-	
+
 The FPCR is a 32 bit register consisting of bit flags.
 */
 
-- 
1.7.1.251.gf80a2

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2010-05-23 19:55 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <1274644549-24952-1-git-send-email-andrea.gelmini@gelma.net>
2010-05-23 19:55 ` [PATCH 133/199] arch/arm/boot/bootp/bootp.lds: Checkpatch cleanup Andrea Gelmini
2010-05-23 19:55 ` [PATCH 134/199] arch/arm/mach-clps711x/Makefile.boot: " Andrea Gelmini
2010-05-23 19:55 ` [PATCH 135/199] arch/arm/mach-footbridge/ebsa285-pci.c: " Andrea Gelmini
2010-05-23 19:55 ` [PATCH 136/199] arch/arm/mach-h720x/common.h: " Andrea Gelmini
2010-05-23 19:55 ` [PATCH 137/199] arch/arm/mach-sa1100/leds.c: " Andrea Gelmini
2010-05-23 19:55 ` [PATCH 138/199] arch/arm/mach-shark/pci.c: " Andrea Gelmini
2010-05-23 19:55 ` [PATCH 139/199] arch/arm/nwfpe/ChangeLog: " Andrea Gelmini
2010-05-23 19:55 ` [PATCH 140/199] arch/arm/nwfpe/fpsr.h: " Andrea Gelmini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).