diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2015-07-01 03:57:35 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2015-07-01 03:57:35 -0400 |
commit | 65f26062cd8f653dac11d3c00d326f7f57b5e098 (patch) | |
tree | c050e2175804003fb0ec9a05110d3650c5f4b15c | |
parent | 24bfcb100959c8641a627b5604d967243f8f240c (diff) |
time: Remove development rules from Kbuild/Makefile
time.o gets rebuilt unconditionally due to a leftover Makefile rule
which was placed there for development purposes.
Remove it along with the commented out always rule in the toplevel
Kbuild file.
Fixes: 0a227985d4a9 'time: Move timeconst.h into include/generated'
Reported-by; Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Nicholas Mc Guire <der.herr@hofr.at>
-rw-r--r-- | Kbuild | 1 | ||||
-rw-r--r-- | kernel/time/Makefile | 2 |
2 files changed, 0 insertions, 3 deletions
@@ -52,7 +52,6 @@ $(obj)/$(bounds-file): kernel/bounds.s FORCE | |||
52 | 52 | ||
53 | timeconst-file := include/generated/timeconst.h | 53 | timeconst-file := include/generated/timeconst.h |
54 | 54 | ||
55 | #always += $(timeconst-file) | ||
56 | targets += $(timeconst-file) | 55 | targets += $(timeconst-file) |
57 | 56 | ||
58 | quiet_cmd_gentimeconst = GEN $@ | 57 | quiet_cmd_gentimeconst = GEN $@ |
diff --git a/kernel/time/Makefile b/kernel/time/Makefile index ffc4cc3dcd47..49eca0beed32 100644 --- a/kernel/time/Makefile +++ b/kernel/time/Makefile | |||
@@ -12,5 +12,3 @@ obj-$(CONFIG_TICK_ONESHOT) += tick-oneshot.o tick-sched.o | |||
12 | obj-$(CONFIG_TIMER_STATS) += timer_stats.o | 12 | obj-$(CONFIG_TIMER_STATS) += timer_stats.o |
13 | obj-$(CONFIG_DEBUG_FS) += timekeeping_debug.o | 13 | obj-$(CONFIG_DEBUG_FS) += timekeeping_debug.o |
14 | obj-$(CONFIG_TEST_UDELAY) += test_udelay.o | 14 | obj-$(CONFIG_TEST_UDELAY) += test_udelay.o |
15 | |||
16 | $(obj)/time.o: $(objtree)/include/config/ | ||