Commit 900cfa46 authored by Carlos R. Mafra's avatar Carlos R. Mafra Committed by Thomas Gleixner

hrtimer: Remove unused variables in ktime_divns()

The variables dns and inc are not used, remove them.
Signed-off-by: default avatarCarlos R. Mafra <crmafra@gmail.com>
Cc: tglx@linutronix.de
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent d0314764
......@@ -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++;
......
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