MN10300: define HZ as a config option
Define HZ as a config option. Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
1a823ac9ff
commit
860f7be283
|
@ -63,6 +63,10 @@ config GENERIC_HARDIRQS
|
||||||
config HOTPLUG_CPU
|
config HOTPLUG_CPU
|
||||||
def_bool n
|
def_bool n
|
||||||
|
|
||||||
|
config HZ
|
||||||
|
int
|
||||||
|
default 1000
|
||||||
|
|
||||||
mainmenu "Matsushita MN10300/AM33 Kernel Configuration"
|
mainmenu "Matsushita MN10300/AM33 Kernel Configuration"
|
||||||
|
|
||||||
source "init/Kconfig"
|
source "init/Kconfig"
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
#define _ASM_PARAM_H
|
#define _ASM_PARAM_H
|
||||||
|
|
||||||
#ifdef __KERNEL__
|
#ifdef __KERNEL__
|
||||||
#define HZ 1000 /* Internal kernel timer frequency */
|
#define HZ CONFIG_HZ /* Internal kernel timer frequency */
|
||||||
#define USER_HZ 100 /* .. some user interfaces are in
|
#define USER_HZ 100 /* .. some user interfaces are in
|
||||||
* "ticks" */
|
* "ticks" */
|
||||||
#define CLOCKS_PER_SEC (USER_HZ) /* like times() */
|
#define CLOCKS_PER_SEC (USER_HZ) /* like times() */
|
||||||
|
|
Loading…
Reference in New Issue