aboutsummaryrefslogtreecommitdiff
path: root/include/asm-generic
diff options
context:
space:
mode:
authorEvisceration <eviscerationls@gmail.com>2017-08-19 19:07:55 +0300
committerMister Oyster <oysterized@gmail.com>2017-12-06 14:45:45 +0100
commit327dac7d49d2e11969e7fa5c22c6f1b21736882b (patch)
tree9401036190e8c7751e8e31fa8306c4b0195af963 /include/asm-generic
parentabef759865a90737de6143f272a16303501046d4 (diff)
include: asm-generic: do not hard code HZ to 100
Use the defconfig value instead Change-Id: I529d08cf06d64f1e3976c0cd876f40b7efefa222 Signed-off-by: Alexander Martinz <eviscerationls@gmail.com>
Diffstat (limited to 'include/asm-generic')
-rw-r--r--include/asm-generic/param.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-generic/param.h b/include/asm-generic/param.h
index 04e715bcc..171a724b5 100644
--- a/include/asm-generic/param.h
+++ b/include/asm-generic/param.h
@@ -5,6 +5,6 @@
# undef HZ
# define HZ CONFIG_HZ /* Internal kernel timer frequency */
-# define USER_HZ 100 /* some user interfaces are */
+# define USER_HZ CONFIG_HZ /* some user interfaces are */
# define CLOCKS_PER_SEC (USER_HZ) /* in "ticks" like times() */
#endif /* __ASM_GENERIC_PARAM_H */