sh: Always use CONFIG_HZ for HZ.
Currently the wdt forces HZ=1000 and sidesteps CONFIG_HZ completely. This is a remnant from when HZ was hardcoded and before CONFIG_HZ was introduced. Additionally, not all of the timers have this requirement these days, so it's also an artificial limitation. Just kill it off and use CONFIG_HZ directly. Reported-by: H. Peter Anvin <hpa@zytor.com> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
This commit is contained in:
parent
0095d58b4a
commit
7bff489a14
1 changed files with 1 additions and 5 deletions
|
@ -2,11 +2,7 @@
|
||||||
#define __ASM_SH_PARAM_H
|
#define __ASM_SH_PARAM_H
|
||||||
|
|
||||||
#ifdef __KERNEL__
|
#ifdef __KERNEL__
|
||||||
# ifdef CONFIG_SH_WDT
|
# define HZ CONFIG_HZ
|
||||||
# define HZ 1000 /* Needed for high-res WOVF */
|
|
||||||
# else
|
|
||||||
# define HZ CONFIG_HZ
|
|
||||||
# endif
|
|
||||||
# define USER_HZ 100 /* User interfaces are in "ticks" */
|
# define USER_HZ 100 /* User interfaces are in "ticks" */
|
||||||
# define CLOCKS_PER_SEC (USER_HZ) /* frequency at which times() counts */
|
# define CLOCKS_PER_SEC (USER_HZ) /* frequency at which times() counts */
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue