Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 69932487 authored by Justin P. Mattock's avatar Justin P. Mattock Committed by Jiri Kosina
Browse files

treewide: remove extra semicolons from various parts of the kernel



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: default avatarJustin P. Mattock <justinmattock@gmail.com>
Signed-off-by: default avatarJiri Kosina <jkosina@suse.cz>
parent ca4a04cf
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);

}
+1 −1
Original line number Diff line number Diff line
@@ -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);
+1 −1
Original line number Diff line number Diff line
@@ -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)
+1 −1
Original line number Diff line number Diff line
@@ -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);
}
+1 −1
Original line number Diff line number Diff line
@@ -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;

Loading