summaryrefslogtreecommitdiff
path: root/drivers/media/common/b2c2
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2013-10-08 20:29:08 -0300
committerMauro Carvalho Chehab <m.chehab@samsung.com>2013-10-17 05:51:57 -0300
commit2028c71d54e7bd7eb4470d5968f581f9f9284406 (patch)
treeeba75f65ae20290fc8467a42d95f4b7e4e7fb0f5 /drivers/media/common/b2c2
parentcfd736adf68a2efcc069f3bd2b5ba545fd5d020c (diff)
[media] media: Remove unnecessary semicolons
These aren't necessary after switch and while statements. Signed-off-by: Joe Perches <joe@perches.com> Reviewed-by: Sakari Ailus <sakari.ailus@iki.fi> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'drivers/media/common/b2c2')
-rw-r--r--drivers/media/common/b2c2/flexcop-sram.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/media/common/b2c2/flexcop-sram.c b/drivers/media/common/b2c2/flexcop-sram.c
index f2199e43e803..185c285f70fc 100644
--- a/drivers/media/common/b2c2/flexcop-sram.c
+++ b/drivers/media/common/b2c2/flexcop-sram.c
@@ -85,7 +85,7 @@ static void flexcop_sram_write(struct adapter *adapter, u32 bank, u32 addr, u8 *
while (((read_reg_dw(adapter, 0x700) & 0x80000000) != 0) && (retries > 0)) {
mdelay(1);
retries--;
- };
+ }
if (retries == 0)
printk("%s: SRAM timeout\n", __func__);
@@ -110,7 +110,7 @@ static void flex_sram_read(struct adapter *adapter, u32 bank, u32 addr, u8 *buf,
while (((read_reg_dw(adapter, 0x700) & 0x80000000) != 0) && (retries > 0)) {
mdelay(1);
retries--;
- };
+ }
if (retries == 0)
printk("%s: SRAM timeout\n", __func__);
@@ -122,7 +122,7 @@ static void flex_sram_read(struct adapter *adapter, u32 bank, u32 addr, u8 *buf,
while (((read_reg_dw(adapter, 0x700) & 0x80000000) != 0) && (retries > 0)) {
mdelay(1);
retries--;
- };
+ }
if (retries == 0)
printk("%s: SRAM timeout\n", __func__);