mirror of
https://github.com/torvalds/linux.git
synced 2024-11-27 06:31:52 +00:00
hrtimer: Remove unused variables in ktime_divns()
The variables dns and inc are not used, remove them. Signed-off-by: Carlos R. Mafra <crmafra@gmail.com> Cc: tglx@linutronix.de Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
parent
d031476408
commit
900cfa4619
@ -300,11 +300,10 @@ EXPORT_SYMBOL_GPL(ktime_sub_ns);
|
||||
*/
|
||||
u64 ktime_divns(const ktime_t kt, s64 div)
|
||||
{
|
||||
u64 dclc, inc, dns;
|
||||
u64 dclc;
|
||||
int sft = 0;
|
||||
|
||||
dclc = dns = ktime_to_ns(kt);
|
||||
inc = div;
|
||||
dclc = ktime_to_ns(kt);
|
||||
/* Make sure the divisor is less than 2^32: */
|
||||
while (div >> 32) {
|
||||
sft++;
|
||||
|
Loading…
Reference in New Issue
Block a user