diff options
author | kbuild test robot <[email protected]> | 2014-12-03 16:07:59 +1100 |
---|---|---|
committer | NeilBrown <[email protected]> | 2014-12-03 16:07:59 +1100 |
commit | 7d7e64f2ecd4a863b5fbc1fe998bb39d6423664a (patch) | |
tree | b0709eccda07eed3bd4d8ff62552d63cfcdf9fa2 | |
parent | 108cef3aa41669610e1836fe638812dd067d72de (diff) |
md: fix semicolon.cocci warnings
drivers/md/md.c:7175:43-44: Unneeded semicolon
Removes unneeded semicolon.
Generated by: scripts/coccinelle/misc/semicolon.cocci
Signed-off-by: Fengguang Wu <[email protected]>
Signed-off-by: NeilBrown <[email protected]>
-rw-r--r-- | drivers/md/md.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/md/md.c b/drivers/md/md.c index 9233c71138f1..ad5d783ad416 100644 --- a/drivers/md/md.c +++ b/drivers/md/md.c @@ -6969,7 +6969,7 @@ static unsigned int mdstat_poll(struct file *filp, poll_table *wait) int mask; if (md_unloading) - return POLLIN|POLLRDNORM|POLLERR|POLLPRI;; + return POLLIN|POLLRDNORM|POLLERR|POLLPRI; poll_wait(filp, &md_event_waiters, wait); /* always allow read */ |