Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
eb2e58de
Commit
eb2e58de
authored
Sep 07, 2004
by
Russell King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ARM] Eliminate ARM private __KERNEL_HZ.
parent
5d68dd4b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
7 deletions
+6
-7
include/asm-arm/arch-ebsa110/param.h
include/asm-arm/arch-ebsa110/param.h
+1
-1
include/asm-arm/arch-l7200/param.h
include/asm-arm/arch-l7200/param.h
+1
-1
include/asm-arm/arch-s3c2410/param.h
include/asm-arm/arch-s3c2410/param.h
+1
-1
include/asm-arm/param.h
include/asm-arm/param.h
+3
-4
No files found.
include/asm-arm/arch-ebsa110/param.h
View file @
eb2e58de
/*
* linux/include/asm-arm/arch-ebsa110/param.h
*/
#define
__KERNEL_
HZ 200
#define HZ 200
include/asm-arm/arch-l7200/param.h
View file @
eb2e58de
...
...
@@ -16,4 +16,4 @@
/*
* See 'time.h' for how the RTC HZ rate is set
*/
#define
__KERNEL_
HZ 128
#define HZ 128
include/asm-arm/arch-s3c2410/param.h
View file @
eb2e58de
...
...
@@ -22,6 +22,6 @@
* add a software pre-scaler to the evil timer systems.
*/
#define
__KERNEL_
HZ 200
#define HZ 200
#endif
/* __ASM_ARCH_PARAM_H */
include/asm-arm/param.h
View file @
eb2e58de
...
...
@@ -11,13 +11,12 @@
#define __ASM_PARAM_H
#ifdef __KERNEL__
# include <asm/arch/param.h>
/* for
__KERNEL_
HZ */
# include <asm/arch/param.h>
/* for
kernel version of
HZ */
# ifndef
__KERNEL_
HZ
#
define __KERNEL_HZ 100
# ifndef HZ
#
define HZ 100
/* Internal kernel timer frequency */
# endif
# define HZ __KERNEL_HZ
/* Internal kernel timer frequency */
# define USER_HZ 100
/* User interfaces are in "ticks" */
# define CLOCKS_PER_SEC (USER_HZ)
/* like times() */
#else
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment