drivers: Remove redundant semicolon

Remove the redundant semicolon used as a terminator in
`if`, `switch`, `while` statements.

Found using Coccinelle.

Signed-off-by: Himanshu Jha <himanshujha199640@gmail.com>
This commit is contained in:
Himanshu Jha 2018-10-23 11:04:33 +05:30 committed by Anas Nashif
commit d0a98b7cf9
9 changed files with 11 additions and 11 deletions

View file

@ -94,7 +94,7 @@ static inline void ssd1673_busy_wait(struct ssd1673_data *driver)
while (val) {
k_busy_wait(SSD1673_BUSY_DELAY);
gpio_pin_read(driver->busy, CONFIG_SSD1673_BUSY_PIN, &val);
};
}
}
static inline int ssd1673_set_ram_param(struct ssd1673_data *driver,