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
nexedi
linux
Commits
8a97c425
Commit
8a97c425
authored
Mar 11, 2003
by
Dave Jones
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[CPUFREQ] fix signed comparison warnings for longhaul
parent
4e2b03cd
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
arch/i386/kernel/cpu/cpufreq/longhaul.c
arch/i386/kernel/cpu/cpufreq/longhaul.c
+3
-3
No files found.
arch/i386/kernel/cpu/cpufreq/longhaul.c
View file @
8a97c425
...
...
@@ -40,7 +40,7 @@
#define dprintk(msg...) do { } while(0);
#endif
static
int
numscales
=
16
,
numvscales
;
static
unsigned
int
numscales
=
16
,
numvscales
;
static
int
minvid
,
maxvid
;
static
int
can_scale_voltage
;
static
int
can_scale_fsb
;
...
...
@@ -51,7 +51,7 @@ static int vrmrev;
static
int
prefer_slow_fsb
;
static
int
dont_scale_voltage
;
static
int
dont_scale_fsb
;
static
int
current_fsb
;
static
unsigned
int
current_fsb
;
#define __hlt() __asm__ __volatile__("hlt": : :"memory")
...
...
@@ -258,7 +258,7 @@ static int __initdata mobilevrmscales[32] = {
static
int
clock_ratio
[
32
];
static
int
eblcr_table
[
32
];
static
int
voltage_table
[
32
];
static
int
highest_speed
,
lowest_speed
;
/* kHz */
static
unsigned
int
highest_speed
,
lowest_speed
;
/* kHz */
static
int
longhaul
;
/* version. */
static
struct
cpufreq_frequency_table
*
longhaul_table
;
...
...
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