- hrtimer-remove-unused-variables-in-ktime_divns.patch removed from -mm tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



The patch titled
     hrtimer: remove unused variables in ktime_divns()
has been removed from the -mm tree.  Its filename was
     hrtimer-remove-unused-variables-in-ktime_divns.patch

This patch was dropped because it was merged into mainline or a subsystem tree

The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/

------------------------------------------------------
Subject: hrtimer: remove unused variables in ktime_divns()
From: "Carlos R. Mafra" <crmafra2@xxxxxxxxx>

The variables dns and inc are not used, remove them.

Signed-off-by: Carlos R. Mafra <crmafra@xxxxxxxxx>
Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>
---

 kernel/hrtimer.c |    5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff -puN kernel/hrtimer.c~hrtimer-remove-unused-variables-in-ktime_divns kernel/hrtimer.c
--- a/kernel/hrtimer.c~hrtimer-remove-unused-variables-in-ktime_divns
+++ a/kernel/hrtimer.c
@@ -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++;
_

Patches currently in -mm which might be from crmafra2@xxxxxxxxx are

linux-next.patch
drm-remove-defines-for-non-linux-systems.patch

--
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Kernel Newbies FAQ]     [Kernel Archive]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [Bugtraq]     [Photo]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]

  Powered by Linux