Commit bb6b8238 authored by Linus Torvalds's avatar Linus Torvalds

Merge master.kernel.org:/pub/scm/linux/kernel/git/davem/sparc-2.6

parents 79af02c2 a6524813
...@@ -43,6 +43,8 @@ config SPARC64_PAGE_SIZE_4MB ...@@ -43,6 +43,8 @@ config SPARC64_PAGE_SIZE_4MB
endchoice endchoice
source kernel/Kconfig.hz
source "init/Kconfig" source "init/Kconfig"
config SYSVIPC_COMPAT config SYSVIPC_COMPAT
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
#elif PAGE_SHIFT == 19 #elif PAGE_SHIFT == 19
#define SZ_BITS _PAGE_SZ512K #define SZ_BITS _PAGE_SZ512K
#elif PAGE_SHIFT == 22 #elif PAGE_SHIFT == 22
#define SZ_BITS _PAGE_SZ4M #define SZ_BITS _PAGE_SZ4MB
#endif #endif
#define VALID_SZ_BITS (_PAGE_VALID | SZ_BITS) #define VALID_SZ_BITS (_PAGE_VALID | SZ_BITS)
......
/* $Id: param.h,v 1.2 2000/10/30 21:01:41 davem Exp $ */
#ifndef _ASMSPARC64_PARAM_H #ifndef _ASMSPARC64_PARAM_H
#define _ASMSPARC64_PARAM_H #define _ASMSPARC64_PARAM_H
#include <linux/config.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 "ticks" */ # define USER_HZ 100 /* .. some user interfaces are in "ticks" */
# define CLOCKS_PER_SEC (USER_HZ) # define CLOCKS_PER_SEC (USER_HZ)
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment