linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] arch/arm/mach-at91/gpio.c: Remove unecessary semicolon
@ 2012-09-18 16:36 Peter Senna Tschudin
  2012-09-18 16:36 ` [PATCH] arch/arm/mach-davinci/board-dm646x-evm.c: Remove unecessary Peter Senna Tschudin
                   ` (6 more replies)
  0 siblings, 7 replies; 15+ messages in thread
From: Peter Senna Tschudin @ 2012-09-18 16:36 UTC (permalink / raw)
  To: linux
  Cc: nicolas.ferre, plagnioj, linux, linux-arm-kernel, linux-kernel,
	kernel-janitors, Peter Senna Tschudin

Found by http://coccinelle.lip6.fr/

Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com>
---
 arch/arm/mach-at91/gpio.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/mach-at91/gpio.c b/arch/arm/mach-at91/gpio.c
index be42cf0..ea31e96 100644
--- a/arch/arm/mach-at91/gpio.c
+++ b/arch/arm/mach-at91/gpio.c
@@ -658,7 +658,7 @@ static int at91_gpio_show(struct seq_file *s, void *unused)
 	seq_printf(s, "Pin\t");
 	for (bank = 0; bank < gpio_banks; bank++) {
 		seq_printf(s, "PIO%c\t\t", 'A' + bank);
-	};
+	}
 	seq_printf(s, "\n\n");
 
 	/* print pin status */
-- 
1.7.11.4


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

* [PATCH] arch/arm/mach-davinci/board-dm646x-evm.c: Remove unecessary
  2012-09-18 16:36 [PATCH] arch/arm/mach-at91/gpio.c: Remove unecessary semicolon Peter Senna Tschudin
@ 2012-09-18 16:36 ` Peter Senna Tschudin
  2012-09-18 16:49   ` Prabhakar Lad
  2012-09-18 16:36 ` [PATCH] arch/arm/mach-omap1/devices.c: Remove unecessary semicolon Peter Senna Tschudin
                   ` (5 subsequent siblings)
  6 siblings, 1 reply; 15+ messages in thread
From: Peter Senna Tschudin @ 2012-09-18 16:36 UTC (permalink / raw)
  To: nsekhar
  Cc: khilman, linux, davinci-linux-open-source, linux-arm-kernel,
	linux-kernel, kernel-janitors, Peter Senna Tschudin

Found by http://coccinelle.lip6.fr/

Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com>
---
 arch/arm/mach-davinci/board-dm646x-evm.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/mach-davinci/board-dm646x-evm.c b/arch/arm/mach-davinci/board-dm646x-evm.c
index 958679a..1ccaace 100644
--- a/arch/arm/mach-davinci/board-dm646x-evm.c
+++ b/arch/arm/mach-davinci/board-dm646x-evm.c
@@ -193,7 +193,7 @@ static int evm_led_setup(struct i2c_client *client, int gpio,
 	while (ngpio--) {
 		leds->gpio = gpio++;
 		leds++;
-	};
+	}
 
 	evm_led_dev = platform_device_alloc("leds-gpio", 0);
 	platform_device_add_data(evm_led_dev, &evm_led_data,
-- 
1.7.11.4


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

* [PATCH] arch/arm/mach-omap1/devices.c: Remove unecessary semicolon
  2012-09-18 16:36 [PATCH] arch/arm/mach-at91/gpio.c: Remove unecessary semicolon Peter Senna Tschudin
  2012-09-18 16:36 ` [PATCH] arch/arm/mach-davinci/board-dm646x-evm.c: Remove unecessary Peter Senna Tschudin
@ 2012-09-18 16:36 ` Peter Senna Tschudin
  2012-10-08 21:19   ` Tony Lindgren
  2012-09-18 16:36 ` [PATCH] arch/arm/mach-omap2: " Peter Senna Tschudin
                   ` (4 subsequent siblings)
  6 siblings, 1 reply; 15+ messages in thread
From: Peter Senna Tschudin @ 2012-09-18 16:36 UTC (permalink / raw)
  To: tony
  Cc: linux, linux-omap, linux-arm-kernel, linux-kernel,
	kernel-janitors, Peter Senna Tschudin

Found by http://coccinelle.lip6.fr/

Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com>
---
 arch/arm/mach-omap1/devices.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/mach-omap1/devices.c b/arch/arm/mach-omap1/devices.c
index fa1fa4d..688b23a 100644
--- a/arch/arm/mach-omap1/devices.c
+++ b/arch/arm/mach-omap1/devices.c
@@ -232,7 +232,7 @@ void __init omap1_init_mmc(struct omap_mmc_platform_data **mmc_data,
 
 		omap_mmc_add("mmci-omap", i, base, size, irq,
 				rx_req, tx_req, mmc_data[i]);
-	};
+	}
 }
 
 #endif
-- 
1.7.11.4


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

* [PATCH] arch/arm/mach-omap2: Remove unecessary semicolon
  2012-09-18 16:36 [PATCH] arch/arm/mach-at91/gpio.c: Remove unecessary semicolon Peter Senna Tschudin
  2012-09-18 16:36 ` [PATCH] arch/arm/mach-davinci/board-dm646x-evm.c: Remove unecessary Peter Senna Tschudin
  2012-09-18 16:36 ` [PATCH] arch/arm/mach-omap1/devices.c: Remove unecessary semicolon Peter Senna Tschudin
@ 2012-09-18 16:36 ` Peter Senna Tschudin
  2012-10-08 21:19   ` Tony Lindgren
  2012-09-18 16:36 ` [PATCH] arch/arm/plat-mxc/ulpi.c: " Peter Senna Tschudin
                   ` (3 subsequent siblings)
  6 siblings, 1 reply; 15+ messages in thread
From: Peter Senna Tschudin @ 2012-09-18 16:36 UTC (permalink / raw)
  To: tony
  Cc: linux, khilman, linux-omap, linux-arm-kernel, linux-kernel,
	kernel-janitors, Peter Senna Tschudin

Found by http://coccinelle.lip6.fr/

Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com>
---
 arch/arm/mach-omap2/board-flash.c          | 2 +-
 arch/arm/mach-omap2/clkt_clksel.c          | 2 +-
 arch/arm/mach-omap2/mux.c                  | 2 +-
 arch/arm/mach-omap2/omap_hwmod_3xxx_data.c | 6 +++---
 arch/arm/mach-omap2/pm-debug.c             | 2 +-
 5 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/arch/arm/mach-omap2/board-flash.c b/arch/arm/mach-omap2/board-flash.c
index 53c39d2..d4c5bd5 100644
--- a/arch/arm/mach-omap2/board-flash.c
+++ b/arch/arm/mach-omap2/board-flash.c
@@ -218,7 +218,7 @@ void __init board_flash_init(struct flash_partitions partition_info[],
 			if (onenandcs > GPMC_CS_NUM)
 				onenandcs = cs;
 			break;
-		};
+		}
 		cs++;
 	}
 
diff --git a/arch/arm/mach-omap2/clkt_clksel.c b/arch/arm/mach-omap2/clkt_clksel.c
index 04d551b..fdb79c5 100644
--- a/arch/arm/mach-omap2/clkt_clksel.c
+++ b/arch/arm/mach-omap2/clkt_clksel.c
@@ -365,7 +365,7 @@ void omap2_init_clksel_parent(struct clk *clk)
 						 ((clk->parent) ?
 						  clk->parent->name : "NULL"));
 					clk_reparent(clk, clks->parent);
-				};
+				}
 				found = 1;
 			}
 		}
diff --git a/arch/arm/mach-omap2/mux.c b/arch/arm/mach-omap2/mux.c
index 9fe6829..701e17c 100644
--- a/arch/arm/mach-omap2/mux.c
+++ b/arch/arm/mach-omap2/mux.c
@@ -486,7 +486,7 @@ void omap_hwmod_mux(struct omap_hwmod_mux_info *hmux, u8 state)
 		default:
 			/* Nothing to be done */
 			break;
-		};
+		}
 
 		if (val >= 0) {
 			omap_mux_write(pad->partition, val,
diff --git a/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c b/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c
index ce7e606..5b91454 100644
--- a/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c
+++ b/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c
@@ -3459,7 +3459,7 @@ int __init omap3xxx_hwmod_init(void)
 	} else {
 		WARN(1, "OMAP3 hwmod family init: unknown chip type\n");
 		return -EINVAL;
-	};
+	}
 
 	r = omap_hwmod_register_links(h);
 	if (r < 0)
@@ -3476,7 +3476,7 @@ int __init omap3xxx_hwmod_init(void)
 		   rev == OMAP3430_REV_ES3_0 || rev == OMAP3430_REV_ES3_1 ||
 		   rev == OMAP3430_REV_ES3_1_2) {
 		h = omap3430es2plus_hwmod_ocp_ifs;
-	};
+	}
 
 	if (h) {
 		r = omap_hwmod_register_links(h);
@@ -3491,7 +3491,7 @@ int __init omap3xxx_hwmod_init(void)
 	} else if (rev == OMAP3430_REV_ES3_0 || rev == OMAP3430_REV_ES3_1 ||
 		   rev == OMAP3430_REV_ES3_1_2) {
 		h = omap3430_es3plus_hwmod_ocp_ifs;
-	};
+	}
 
 	if (h)
 		r = omap_hwmod_register_links(h);
diff --git a/arch/arm/mach-omap2/pm-debug.c b/arch/arm/mach-omap2/pm-debug.c
index 814bcd9..b5acc75 100644
--- a/arch/arm/mach-omap2/pm-debug.c
+++ b/arch/arm/mach-omap2/pm-debug.c
@@ -169,7 +169,7 @@ static int pm_dbg_open(struct inode *inode, struct file *file)
 	default:
 		return single_open(file, pm_dbg_show_timers,
 			&inode->i_private);
-	};
+	}
 }
 
 static const struct file_operations debug_fops = {
-- 
1.7.11.4


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

* [PATCH] arch/arm/plat-mxc/ulpi.c: Remove unecessary semicolon
  2012-09-18 16:36 [PATCH] arch/arm/mach-at91/gpio.c: Remove unecessary semicolon Peter Senna Tschudin
                   ` (2 preceding siblings ...)
  2012-09-18 16:36 ` [PATCH] arch/arm/mach-omap2: " Peter Senna Tschudin
@ 2012-09-18 16:36 ` Peter Senna Tschudin
  2012-09-18 18:27   ` Uwe Kleine-König
  2012-09-18 16:36 ` [PATCH] arch/arm/plat-omap/omap-pm-noop.c: " Peter Senna Tschudin
                   ` (2 subsequent siblings)
  6 siblings, 1 reply; 15+ messages in thread
From: Peter Senna Tschudin @ 2012-09-18 16:36 UTC (permalink / raw)
  To: kernel
  Cc: linux, linux-arm-kernel, linux-kernel, kernel-janitors,
	Peter Senna Tschudin

Found by http://coccinelle.lip6.fr/

Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com>
---
 arch/arm/plat-mxc/ulpi.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/plat-mxc/ulpi.c b/arch/arm/plat-mxc/ulpi.c
index d296342..a799afb 100644
--- a/arch/arm/plat-mxc/ulpi.c
+++ b/arch/arm/plat-mxc/ulpi.c
@@ -51,7 +51,7 @@ static int ulpi_poll(void __iomem *view, u32 bit)
 			return 0;
 
 		cpu_relax();
-	};
+	}
 
 	printk(KERN_WARNING "timeout polling for ULPI device\n");
 
-- 
1.7.11.4


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

* [PATCH] arch/arm/plat-omap/omap-pm-noop.c: Remove unecessary semicolon
  2012-09-18 16:36 [PATCH] arch/arm/mach-at91/gpio.c: Remove unecessary semicolon Peter Senna Tschudin
                   ` (3 preceding siblings ...)
  2012-09-18 16:36 ` [PATCH] arch/arm/plat-mxc/ulpi.c: " Peter Senna Tschudin
@ 2012-09-18 16:36 ` Peter Senna Tschudin
  2012-10-08 21:20   ` Tony Lindgren
  2012-09-18 16:36 ` [PATCH] arch/x86: " Peter Senna Tschudin
  2012-09-18 18:58 ` [PATCH] arch/arm/mach-at91/gpio.c: Remove unecessary semicolon Jean-Christophe PLAGNIOL-VILLARD
  6 siblings, 1 reply; 15+ messages in thread
From: Peter Senna Tschudin @ 2012-09-18 16:36 UTC (permalink / raw)
  To: khilman
  Cc: tony, linux, linux-omap, linux-arm-kernel, linux-kernel,
	kernel-janitors, Peter Senna Tschudin

Found by http://coccinelle.lip6.fr/

Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com>
---
 arch/arm/plat-omap/omap-pm-noop.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/arm/plat-omap/omap-pm-noop.c b/arch/arm/plat-omap/omap-pm-noop.c
index 5a97b4d..9e01fac 100644
--- a/arch/arm/plat-omap/omap-pm-noop.c
+++ b/arch/arm/plat-omap/omap-pm-noop.c
@@ -38,7 +38,7 @@ int omap_pm_set_max_mpu_wakeup_lat(struct device *dev, long t)
 	if (!dev || t < -1) {
 		WARN(1, "OMAP PM: %s: invalid parameter(s)", __func__);
 		return -EINVAL;
-	};
+	}
 
 	if (t == -1)
 		pr_debug("OMAP PM: remove max MPU wakeup latency constraint: "
@@ -67,7 +67,7 @@ int omap_pm_set_min_bus_tput(struct device *dev, u8 agent_id, unsigned long r)
 	    agent_id != OCP_TARGET_AGENT)) {
 		WARN(1, "OMAP PM: %s: invalid parameter(s)", __func__);
 		return -EINVAL;
-	};
+	}
 
 	if (r == 0)
 		pr_debug("OMAP PM: remove min bus tput constraint: "
@@ -94,7 +94,7 @@ int omap_pm_set_max_dev_wakeup_lat(struct device *req_dev, struct device *dev,
 	if (!req_dev || !dev || t < -1) {
 		WARN(1, "OMAP PM: %s: invalid parameter(s)", __func__);
 		return -EINVAL;
-	};
+	}
 
 	if (t == -1)
 		pr_debug("OMAP PM: remove max device latency constraint: "
@@ -124,7 +124,7 @@ int omap_pm_set_max_sdma_lat(struct device *dev, long t)
 	if (!dev || t < -1) {
 		WARN(1, "OMAP PM: %s: invalid parameter(s)", __func__);
 		return -EINVAL;
-	};
+	}
 
 	if (t == -1)
 		pr_debug("OMAP PM: remove max DMA latency constraint: "
-- 
1.7.11.4


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

* [PATCH] arch/x86: Remove unecessary semicolon
  2012-09-18 16:36 [PATCH] arch/arm/mach-at91/gpio.c: Remove unecessary semicolon Peter Senna Tschudin
                   ` (4 preceding siblings ...)
  2012-09-18 16:36 ` [PATCH] arch/arm/plat-omap/omap-pm-noop.c: " Peter Senna Tschudin
@ 2012-09-18 16:36 ` Peter Senna Tschudin
  2012-09-19 17:07   ` [tip:x86/cleanups] arch/x86: Remove unecessary semicolons tip-bot for Peter Senna Tschudin
  2012-09-18 18:58 ` [PATCH] arch/arm/mach-at91/gpio.c: Remove unecessary semicolon Jean-Christophe PLAGNIOL-VILLARD
  6 siblings, 1 reply; 15+ messages in thread
From: Peter Senna Tschudin @ 2012-09-18 16:36 UTC (permalink / raw)
  To: tglx
  Cc: mingo, hpa, x86, avi, mtosatti, a.p.zijlstra, rusty,
	masami.hiramatsu.pt, suresh.b.siddha, joerg.roedel, agordeev,
	yinghai, bhelgaas, liuj97, peter.senna, linux-kernel, kvm,
	kernel-janitors

Found by http://coccinelle.lip6.fr/

Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com>
---
 arch/x86/kernel/alternative.c  | 4 ++--
 arch/x86/kernel/apic/apic.c    | 2 +-
 arch/x86/kvm/vmx.c             | 2 +-
 arch/x86/pci/mmconfig-shared.c | 2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/arch/x86/kernel/alternative.c b/arch/x86/kernel/alternative.c
index 357475a..ef5ccca 100644
--- a/arch/x86/kernel/alternative.c
+++ b/arch/x86/kernel/alternative.c
@@ -304,7 +304,7 @@ static void alternatives_smp_lock(const s32 *start, const s32 *end,
 		/* turn DS segment override prefix into lock prefix */
 		if (*ptr == 0x3e)
 			text_poke(ptr, ((unsigned char []){0xf0}), 1);
-	};
+	}
 	mutex_unlock(&text_mutex);
 }
 
@@ -322,7 +322,7 @@ static void alternatives_smp_unlock(const s32 *start, const s32 *end,
 		/* turn lock prefix into DS segment override prefix */
 		if (*ptr == 0xf0)
 			text_poke(ptr, ((unsigned char []){0x3E}), 1);
-	};
+	}
 	mutex_unlock(&text_mutex);
 }
 
diff --git a/arch/x86/kernel/apic/apic.c b/arch/x86/kernel/apic/apic.c
index 24deb30..b17416e 100644
--- a/arch/x86/kernel/apic/apic.c
+++ b/arch/x86/kernel/apic/apic.c
@@ -1934,7 +1934,7 @@ void smp_error_interrupt(struct pt_regs *regs)
 			apic_printk(APIC_DEBUG, KERN_CONT " : %s", error_interrupt_reason[i]);
 		i++;
 		v1 >>= 1;
-	};
+	}
 
 	apic_printk(APIC_DEBUG, KERN_CONT "\n");
 
diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c
index d62b413..5f1c771 100644
--- a/arch/x86/kvm/vmx.c
+++ b/arch/x86/kvm/vmx.c
@@ -4501,7 +4501,7 @@ static int handle_cr(struct kvm_vcpu *vcpu)
 				vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
 				return 0;
 			}
-		};
+		}
 		break;
 	case 2: /* clts */
 		handle_clts(vcpu);
diff --git a/arch/x86/pci/mmconfig-shared.c b/arch/x86/pci/mmconfig-shared.c
index 937bcec..704b9ec 100644
--- a/arch/x86/pci/mmconfig-shared.c
+++ b/arch/x86/pci/mmconfig-shared.c
@@ -585,7 +585,7 @@ static int __init pci_parse_mcfg(struct acpi_table_header *header)
 	while (i >= sizeof(struct acpi_mcfg_allocation)) {
 		entries++;
 		i -= sizeof(struct acpi_mcfg_allocation);
-	};
+	}
 	if (entries == 0) {
 		pr_err(PREFIX "MMCONFIG has no entries\n");
 		return -ENODEV;
-- 
1.7.11.4


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

* Re: [PATCH] arch/arm/mach-davinci/board-dm646x-evm.c: Remove unecessary
  2012-09-18 16:36 ` [PATCH] arch/arm/mach-davinci/board-dm646x-evm.c: Remove unecessary Peter Senna Tschudin
@ 2012-09-18 16:49   ` Prabhakar Lad
  2012-09-18 16:58     ` Peter Senna Tschudin
  0 siblings, 1 reply; 15+ messages in thread
From: Prabhakar Lad @ 2012-09-18 16:49 UTC (permalink / raw)
  To: Peter Senna Tschudin
  Cc: nsekhar, khilman, davinci-linux-open-source, linux,
	kernel-janitors, linux-kernel, linux-arm-kernel

Hi Peter,

Thanks for the patch.

On Tue, Sep 18, 2012 at 10:06 PM, Peter Senna Tschudin
<peter.senna@gmail.com> wrote:
> Found by http://coccinelle.lip6.fr/
>
The commit message 'Remove unecessary' doesn't explain
what are you trying to do.

Thanks,
--Prabhakar

> Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com>
> ---
>  arch/arm/mach-davinci/board-dm646x-evm.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/arch/arm/mach-davinci/board-dm646x-evm.c b/arch/arm/mach-davinci/board-dm646x-evm.c
> index 958679a..1ccaace 100644
> --- a/arch/arm/mach-davinci/board-dm646x-evm.c
> +++ b/arch/arm/mach-davinci/board-dm646x-evm.c
> @@ -193,7 +193,7 @@ static int evm_led_setup(struct i2c_client *client, int gpio,
>         while (ngpio--) {
>                 leds->gpio = gpio++;
>                 leds++;
> -       };
> +       }
>
>         evm_led_dev = platform_device_alloc("leds-gpio", 0);
>         platform_device_add_data(evm_led_dev, &evm_led_data,
> --
> 1.7.11.4
>
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [PATCH] arch/arm/mach-davinci/board-dm646x-evm.c: Remove unecessary
  2012-09-18 16:49   ` Prabhakar Lad
@ 2012-09-18 16:58     ` Peter Senna Tschudin
  0 siblings, 0 replies; 15+ messages in thread
From: Peter Senna Tschudin @ 2012-09-18 16:58 UTC (permalink / raw)
  To: Prabhakar Lad
  Cc: nsekhar, khilman, davinci-linux-open-source, linux,
	kernel-janitors, linux-kernel, linux-arm-kernel

> The commit message 'Remove unecessary' doesn't explain
> what are you trying to do.
Sorry for that. I'll resend it now.

-- 
Peter

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

* Re: [PATCH] arch/arm/plat-mxc/ulpi.c: Remove unecessary semicolon
  2012-09-18 16:36 ` [PATCH] arch/arm/plat-mxc/ulpi.c: " Peter Senna Tschudin
@ 2012-09-18 18:27   ` Uwe Kleine-König
  0 siblings, 0 replies; 15+ messages in thread
From: Uwe Kleine-König @ 2012-09-18 18:27 UTC (permalink / raw)
  To: Peter Senna Tschudin
  Cc: kernel, linux, linux-arm-kernel, linux-kernel, kernel-janitors

Hello,

$Subject ~= s/unecessary/unnecessary/

other than that the patch looks correct.

Best regards
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-König            |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |

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

* Re: [PATCH] arch/arm/mach-at91/gpio.c: Remove unecessary semicolon
  2012-09-18 16:36 [PATCH] arch/arm/mach-at91/gpio.c: Remove unecessary semicolon Peter Senna Tschudin
                   ` (5 preceding siblings ...)
  2012-09-18 16:36 ` [PATCH] arch/x86: " Peter Senna Tschudin
@ 2012-09-18 18:58 ` Jean-Christophe PLAGNIOL-VILLARD
  6 siblings, 0 replies; 15+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2012-09-18 18:58 UTC (permalink / raw)
  To: Peter Senna Tschudin
  Cc: linux, nicolas.ferre, linux, linux-arm-kernel, linux-kernel,
	kernel-janitors

On 18:36 Tue 18 Sep     , Peter Senna Tschudin wrote:
> Found by http://coccinelle.lip6.fr/
> 
> Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com>
> ---
this will have to wait the pinctrl patch series

Best Regards,
J.

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

* [tip:x86/cleanups] arch/x86: Remove unecessary semicolons
  2012-09-18 16:36 ` [PATCH] arch/x86: " Peter Senna Tschudin
@ 2012-09-19 17:07   ` tip-bot for Peter Senna Tschudin
  0 siblings, 0 replies; 15+ messages in thread
From: tip-bot for Peter Senna Tschudin @ 2012-09-19 17:07 UTC (permalink / raw)
  To: linux-tip-commits; +Cc: linux-kernel, hpa, mingo, peter.senna, tglx

Commit-ID:  4b8073e467e6a66b6a5a8e799d28bc3b243c0d78
Gitweb:     http://git.kernel.org/tip/4b8073e467e6a66b6a5a8e799d28bc3b243c0d78
Author:     Peter Senna Tschudin <peter.senna@gmail.com>
AuthorDate: Tue, 18 Sep 2012 18:36:14 +0200
Committer:  Ingo Molnar <mingo@kernel.org>
CommitDate: Wed, 19 Sep 2012 17:32:48 +0200

arch/x86: Remove unecessary semicolons

Found by http://coccinelle.lip6.fr/

Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com>
Cc: avi@redhat.com
Cc: mtosatti@redhat.com
Cc: a.p.zijlstra@chello.nl
Cc: rusty@rustcorp.com.au
Cc: masami.hiramatsu.pt@hitachi.com
Cc: suresh.b.siddha@intel.com
Cc: joerg.roedel@amd.com
Cc: agordeev@redhat.com
Cc: yinghai@kernel.org
Cc: bhelgaas@google.com
Cc: liuj97@gmail.com
Link: http://lkml.kernel.org/r/1347986174-30287-7-git-send-email-peter.senna@gmail.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
---
 arch/x86/kernel/alternative.c  |    4 ++--
 arch/x86/kernel/apic/apic.c    |    2 +-
 arch/x86/kvm/vmx.c             |    2 +-
 arch/x86/pci/mmconfig-shared.c |    2 +-
 4 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/arch/x86/kernel/alternative.c b/arch/x86/kernel/alternative.c
index ced4534..3318b1e 100644
--- a/arch/x86/kernel/alternative.c
+++ b/arch/x86/kernel/alternative.c
@@ -317,7 +317,7 @@ static void alternatives_smp_lock(const s32 *start, const s32 *end,
 		/* turn DS segment override prefix into lock prefix */
 		if (*ptr == 0x3e)
 			text_poke(ptr, ((unsigned char []){0xf0}), 1);
-	};
+	}
 	mutex_unlock(&text_mutex);
 }
 
@@ -338,7 +338,7 @@ static void alternatives_smp_unlock(const s32 *start, const s32 *end,
 		/* turn lock prefix into DS segment override prefix */
 		if (*ptr == 0xf0)
 			text_poke(ptr, ((unsigned char []){0x3E}), 1);
-	};
+	}
 	mutex_unlock(&text_mutex);
 }
 
diff --git a/arch/x86/kernel/apic/apic.c b/arch/x86/kernel/apic/apic.c
index 24deb30..b17416e 100644
--- a/arch/x86/kernel/apic/apic.c
+++ b/arch/x86/kernel/apic/apic.c
@@ -1934,7 +1934,7 @@ void smp_error_interrupt(struct pt_regs *regs)
 			apic_printk(APIC_DEBUG, KERN_CONT " : %s", error_interrupt_reason[i]);
 		i++;
 		v1 >>= 1;
-	};
+	}
 
 	apic_printk(APIC_DEBUG, KERN_CONT "\n");
 
diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c
index b1eb202..b06737d 100644
--- a/arch/x86/kvm/vmx.c
+++ b/arch/x86/kvm/vmx.c
@@ -4543,7 +4543,7 @@ static int handle_cr(struct kvm_vcpu *vcpu)
 				vcpu->run->exit_reason = KVM_EXIT_SET_TPR;
 				return 0;
 			}
-		};
+		}
 		break;
 	case 2: /* clts */
 		handle_clts(vcpu);
diff --git a/arch/x86/pci/mmconfig-shared.c b/arch/x86/pci/mmconfig-shared.c
index 937bcec..704b9ec 100644
--- a/arch/x86/pci/mmconfig-shared.c
+++ b/arch/x86/pci/mmconfig-shared.c
@@ -585,7 +585,7 @@ static int __init pci_parse_mcfg(struct acpi_table_header *header)
 	while (i >= sizeof(struct acpi_mcfg_allocation)) {
 		entries++;
 		i -= sizeof(struct acpi_mcfg_allocation);
-	};
+	}
 	if (entries == 0) {
 		pr_err(PREFIX "MMCONFIG has no entries\n");
 		return -ENODEV;

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

* Re: [PATCH] arch/arm/mach-omap1/devices.c: Remove unecessary semicolon
  2012-09-18 16:36 ` [PATCH] arch/arm/mach-omap1/devices.c: Remove unecessary semicolon Peter Senna Tschudin
@ 2012-10-08 21:19   ` Tony Lindgren
  0 siblings, 0 replies; 15+ messages in thread
From: Tony Lindgren @ 2012-10-08 21:19 UTC (permalink / raw)
  To: Peter Senna Tschudin
  Cc: linux, linux-omap, linux-arm-kernel, linux-kernel, kernel-janitors

* Peter Senna Tschudin <peter.senna@gmail.com> [120918 09:37]:
> Found by http://coccinelle.lip6.fr/
> 
> Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com>
> ---
>  arch/arm/mach-omap1/devices.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/arch/arm/mach-omap1/devices.c b/arch/arm/mach-omap1/devices.c
> index fa1fa4d..688b23a 100644
> --- a/arch/arm/mach-omap1/devices.c
> +++ b/arch/arm/mach-omap1/devices.c
> @@ -232,7 +232,7 @@ void __init omap1_init_mmc(struct omap_mmc_platform_data **mmc_data,
>  
>  		omap_mmc_add("mmci-omap", i, base, size, irq,
>  				rx_req, tx_req, mmc_data[i]);
> -	};
> +	}
>  }
>  
>  #endif

Thanks applying into omap fixes branch.

Regards,

Tony

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

* Re: [PATCH] arch/arm/mach-omap2: Remove unecessary semicolon
  2012-09-18 16:36 ` [PATCH] arch/arm/mach-omap2: " Peter Senna Tschudin
@ 2012-10-08 21:19   ` Tony Lindgren
  0 siblings, 0 replies; 15+ messages in thread
From: Tony Lindgren @ 2012-10-08 21:19 UTC (permalink / raw)
  To: Peter Senna Tschudin
  Cc: linux, khilman, linux-omap, linux-arm-kernel, linux-kernel,
	kernel-janitors

* Peter Senna Tschudin <peter.senna@gmail.com> [120918 09:37]:
> Found by http://coccinelle.lip6.fr/
> 
> Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com>
> ---
>  arch/arm/mach-omap2/board-flash.c          | 2 +-
>  arch/arm/mach-omap2/clkt_clksel.c          | 2 +-
>  arch/arm/mach-omap2/mux.c                  | 2 +-
>  arch/arm/mach-omap2/omap_hwmod_3xxx_data.c | 6 +++---
>  arch/arm/mach-omap2/pm-debug.c             | 2 +-
>  5 files changed, 7 insertions(+), 7 deletions(-)

Thanks applying into omap fixes branch.

Regards,

Tony 


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

* Re: [PATCH] arch/arm/plat-omap/omap-pm-noop.c: Remove unecessary semicolon
  2012-09-18 16:36 ` [PATCH] arch/arm/plat-omap/omap-pm-noop.c: " Peter Senna Tschudin
@ 2012-10-08 21:20   ` Tony Lindgren
  0 siblings, 0 replies; 15+ messages in thread
From: Tony Lindgren @ 2012-10-08 21:20 UTC (permalink / raw)
  To: Peter Senna Tschudin
  Cc: khilman, linux, linux-omap, linux-arm-kernel, linux-kernel,
	kernel-janitors

* Peter Senna Tschudin <peter.senna@gmail.com> [120918 09:37]:
> Found by http://coccinelle.lip6.fr/
> 
> Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com>
> ---
>  arch/arm/plat-omap/omap-pm-noop.c | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)

Thanks applying into omap fixes branch.

Regards,

Tony

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

end of thread, other threads:[~2012-10-08 21:20 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-09-18 16:36 [PATCH] arch/arm/mach-at91/gpio.c: Remove unecessary semicolon Peter Senna Tschudin
2012-09-18 16:36 ` [PATCH] arch/arm/mach-davinci/board-dm646x-evm.c: Remove unecessary Peter Senna Tschudin
2012-09-18 16:49   ` Prabhakar Lad
2012-09-18 16:58     ` Peter Senna Tschudin
2012-09-18 16:36 ` [PATCH] arch/arm/mach-omap1/devices.c: Remove unecessary semicolon Peter Senna Tschudin
2012-10-08 21:19   ` Tony Lindgren
2012-09-18 16:36 ` [PATCH] arch/arm/mach-omap2: " Peter Senna Tschudin
2012-10-08 21:19   ` Tony Lindgren
2012-09-18 16:36 ` [PATCH] arch/arm/plat-mxc/ulpi.c: " Peter Senna Tschudin
2012-09-18 18:27   ` Uwe Kleine-König
2012-09-18 16:36 ` [PATCH] arch/arm/plat-omap/omap-pm-noop.c: " Peter Senna Tschudin
2012-10-08 21:20   ` Tony Lindgren
2012-09-18 16:36 ` [PATCH] arch/x86: " Peter Senna Tschudin
2012-09-19 17:07   ` [tip:x86/cleanups] arch/x86: Remove unecessary semicolons tip-bot for Peter Senna Tschudin
2012-09-18 18:58 ` [PATCH] arch/arm/mach-at91/gpio.c: Remove unecessary semicolon Jean-Christophe PLAGNIOL-VILLARD

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).