Commit 97eec79f authored by Damien Le Moal's avatar Damien Le Moal Committed by Martin K. Petersen

scsi: megaraid: Remove set but unused variable

The variable remainder is unused in mega_div64_32(). Remove it to avoid a
compiler warning. While at it, also fix the function documentation
comments.

Link: https://lore.kernel.org/r/20200706123348.451871-1-damien.lemoal@wdc.comSigned-off-by: default avatarDamien Le Moal <damien.lemoal@wdc.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 7b3c1035
...@@ -80,21 +80,20 @@ u32 mega_mod64(u64 dividend, u32 divisor) ...@@ -80,21 +80,20 @@ u32 mega_mod64(u64 dividend, u32 divisor)
} }
/** /**
* @param dividend : Dividend * mega_div64_32 - Do a 64-bit division
* @param divisor : Divisor * @dividend: Dividend
* @divisor: Divisor
* *
* @return quotient * @return quotient
**/ **/
static u64 mega_div64_32(uint64_t dividend, uint32_t divisor) static u64 mega_div64_32(uint64_t dividend, uint32_t divisor)
{ {
u32 remainder; u64 d = dividend;
u64 d;
if (!divisor) if (!divisor)
printk(KERN_ERR "megasas : DIVISOR is zero in mod fn\n"); printk(KERN_ERR "megasas : DIVISOR is zero in mod fn\n");
d = dividend; do_div(d, divisor);
remainder = do_div(d, divisor);
return d; return d;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment