diff options
| author | 2014-09-26 20:37:56 +0530 | |
|---|---|---|
| committer | 2014-09-28 22:47:54 -0400 | |
| commit | 3c97fbbe55cfda1273abb1b625c1cd08cc122156 (patch) | |
| tree | 88d7abdf48faab1fb67287af118819794ba4ae67 | |
| parent | Staging: rts5208: Fix missing blank line warning (diff) | |
staging: rts5208: Add new line after declaration
This patch fixes checkpatch.pl warning in file ms.c
WARNING : Missing a blank line after declarations
Signed-off-by: Tapasweni Pathak <tapaswenipathak@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
| -rw-r--r-- | drivers/staging/rts5208/ms.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/rts5208/ms.c b/drivers/staging/rts5208/ms.c index 4e4832498599..228e48339b9e 100644 --- a/drivers/staging/rts5208/ms.c +++ b/drivers/staging/rts5208/ms.c @@ -2713,6 +2713,7 @@ static int mspro_read_format_progress(struct rtsx_chip *chip, ms_card->progress = 0; } else { u64 ulltmp = (u64)cur_progress * (u64)65535; + do_div(ulltmp, total_progress); ms_card->progress = (u16)ulltmp; } |
