treewide: remove extra semicolons from various parts of the kernel
authorJustin P. Mattock <justinmattock@gmail.com>
Wed, 27 Jul 2011 06:06:29 +0000 (23:06 -0700)
committerJiri Kosina <jkosina@suse.cz>
Thu, 15 Sep 2011 12:50:49 +0000 (14:50 +0200)
This is a resend from the original, changing the title from PATCH to
RFC(since this is a review for commit, and I should have put that the first go around).
and also removing some of the commit's with ia64 and bash since it is significant.
let me know if I might have missed anything etc..

Signed-off-by: Justin P. Mattock <justinmattock@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
arch/arm/mach-nuc93x/time.c
arch/arm/mach-w90x900/cpu.c
drivers/block/rbd.c
drivers/gpu/drm/radeon/radeon_fence.c
drivers/i2c/busses/i2c-designware.c
drivers/media/radio/wl128x/fmdrv_v4l2.c
drivers/scsi/isci/phy.c
drivers/staging/iio/addac/adt7316-i2c.c
drivers/staging/iio/dds/ad9832.c
drivers/usb/gadget/mv_udc_core.c
scripts/checkpatch.pl

index 2f90f9d..f9807c0 100644 (file)
@@ -82,7 +82,7 @@ static void nuc93x_timer_setup(void)
        timer0_load = (rate / TICKS_PER_SEC);
        __raw_writel(timer0_load, REG_TICR0);
 
-       val |= (PERIOD | COUNTEN | INTEN | PRESCALE);;
+       val |= (PERIOD | COUNTEN | INTEN | PRESCALE);
        __raw_writel(val, REG_TCSR0);
 
 }
index 83c5632..0a235e5 100644 (file)
@@ -60,7 +60,7 @@ static DEFINE_CLK(emc, 7);
 static DEFINE_SUBCLK(rmii, 2);
 static DEFINE_CLK(usbd, 8);
 static DEFINE_CLK(usbh, 9);
-static DEFINE_CLK(g2d, 10);;
+static DEFINE_CLK(g2d, 10);
 static DEFINE_CLK(pwm, 18);
 static DEFINE_CLK(ps2, 24);
 static DEFINE_CLK(kpi, 25);
index 1278098..2c09102 100644 (file)
@@ -192,7 +192,7 @@ static ssize_t rbd_snap_add(struct device *dev,
                            const char *buf,
                            size_t count);
 static void __rbd_remove_snap_dev(struct rbd_device *rbd_dev,
-                                 struct rbd_snap *snap);;
+                                 struct rbd_snap *snap);
 
 
 static struct rbd_device *dev_to_rbd(struct device *dev)
index 021d2b6..9a9f9fc 100644 (file)
@@ -48,7 +48,7 @@ static void radeon_fence_write(struct radeon_device *rdev, u32 seq)
                        scratch_index = R600_WB_EVENT_OFFSET + rdev->fence_drv.scratch_reg - rdev->scratch.reg_base;
                else
                        scratch_index = RADEON_WB_SCRATCH_OFFSET + rdev->fence_drv.scratch_reg - rdev->scratch.reg_base;
-               rdev->wb.wb[scratch_index/4] = cpu_to_le32(seq);;
+               rdev->wb.wb[scratch_index/4] = cpu_to_le32(seq);
        } else
                WREG32(rdev->fence_drv.scratch_reg, seq);
 }
index b7a51c4..1b42b50 100644 (file)
@@ -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;
 
index 8701072..a4f07f8 100644 (file)
@@ -403,7 +403,7 @@ static int fm_v4l2_vidioc_s_hw_freq_seek(struct file *file, void *priv,
 static int fm_v4l2_vidioc_g_modulator(struct file *file, void *priv,
                struct v4l2_modulator *mod)
 {
-       struct fmdev *fmdev = video_drvdata(file);;
+       struct fmdev *fmdev = video_drvdata(file);
 
        if (mod->index != 0)
                return -EINVAL;
index 79313a7..8d9192d 100644 (file)
@@ -695,7 +695,7 @@ enum sci_status sci_phy_event_handler(struct isci_phy *iphy, u32 event_code)
                                 __func__,
                                 event_code);
 
-                       return SCI_FAILURE;;
+                       return SCI_FAILURE;
                }
                return SCI_SUCCESS;
        case SCI_PHY_SUB_AWAIT_SATA_SPEED_EN:
index 52d1ea3..1c86cf1 100644 (file)
@@ -109,7 +109,7 @@ static int __devinit adt7316_i2c_probe(struct i2c_client *client,
 
 static int __devexit adt7316_i2c_remove(struct i2c_client *client)
 {
-       return adt7316_remove(&client->dev);;
+       return adt7316_remove(&client->dev);
 }
 
 static const struct i2c_device_id adt7316_i2c_id[] = {
index e3e61a4..6f0efe6 100644 (file)
@@ -52,7 +52,7 @@ static int ad9832_write_frequency(struct ad9832_state *st,
                                        ((addr - 3) << ADD_SHIFT) |
                                        ((regval >> 0) & 0xFF));
 
-       return spi_sync(st->spi, &st->freq_msg);;
+       return spi_sync(st->spi, &st->freq_msg);
 }
 
 static int ad9832_write_phase(struct ad9832_state *st,
index ce1ac2b..0b3b8d0 100644 (file)
@@ -335,7 +335,7 @@ static int queue_dtd(struct mv_ep *ep, struct mv_req *req)
        } else {
                /* Write dQH next pointer and terminate bit to 0 */
                dqh->next_dtd_ptr = req->head->td_dma
-                       & EP_QUEUE_HEAD_NEXT_POINTER_MASK;;
+                       & EP_QUEUE_HEAD_NEXT_POINTER_MASK;
                dqh->size_ioc_int_sts = 0;
 
                /* Ensure that updates to the QH will occur before priming. */
@@ -376,7 +376,7 @@ static int queue_dtd(struct mv_ep *ep, struct mv_req *req)
                }
        }
 done:
-       return retval;;
+       return retval;
 }
 
 static struct mv_dtd *build_dtd(struct mv_req *req, unsigned *length,
index 9d761c9..14f6a90 100755 (executable)
@@ -2931,11 +2931,11 @@ sub process {
                                }
                        }
                        if ($level == 0 && $block =~ /^\s*\{/ && !$allowed) {
-                               my $herectx = $here . "\n";;
+                               my $herectx = $here . "\n";
                                my $cnt = statement_rawlines($block);
 
                                for (my $n = 0; $n < $cnt; $n++) {
-                                       $herectx .= raw_line($linenr, $n) . "\n";;
+                                       $herectx .= raw_line($linenr, $n) . "\n";
                                }
 
                                WARN("BRACES",