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
8887a32b
Commit
8887a32b
authored
Apr 14, 2002
by
Linus Torvalds
Browse files
Options
Browse Files
Download
Plain Diff
Merge
http://linux-isdn.bkbits.net/linux-2.5.misc
into home.transmeta.com:/home/torvalds/v2.5/linux
parents
92ebc650
556e36f1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
arch/i386/kernel/bluesmoke.c
arch/i386/kernel/bluesmoke.c
+2
-2
drivers/video/neofb.c
drivers/video/neofb.c
+1
-1
init/main.c
init/main.c
+4
-4
No files found.
arch/i386/kernel/bluesmoke.c
View file @
8887a32b
...
...
@@ -33,9 +33,9 @@ static void inline flush_all (void)
* P4/Xeon Thermal transition interrupt handler
*/
#ifdef CONFIG_X86_LOCAL_APIC
static
void
intel_thermal_interrupt
(
struct
pt_regs
*
regs
)
{
#ifdef CONFIG_X86_LOCAL_APIC
u32
l
,
h
;
unsigned
int
cpu
=
smp_processor_id
();
...
...
@@ -48,8 +48,8 @@ static void intel_thermal_interrupt(struct pt_regs *regs)
}
else
{
printk
(
KERN_INFO
"CPU#%d: Temperature/speed normal
\n
"
,
cpu
);
}
#endif
}
#endif
static
void
unexpected_thermal_interrupt
(
struct
pt_regs
*
regs
)
{
...
...
drivers/video/neofb.c
View file @
8887a32b
...
...
@@ -2365,7 +2365,7 @@ int __init neofb_setup (char *options)
if
(
!
options
||
!*
options
)
return
0
;
for
(
this_opt
=
strtok
(
options
,
","
);
this_opt
;
this_opt
=
strtok
(
NULL
,
","
)
)
while
((
this_opt
=
strsep
(
&
options
,
","
))
!=
NULL
)
{
if
(
!*
this_opt
)
continue
;
...
...
init/main.c
View file @
8887a32b
...
...
@@ -272,6 +272,10 @@ static void __init smp_init(void)
#define smp_init() do { } while (0)
#endif
static
inline
void
setup_per_cpu_areas
(
void
)
{
}
#else
#ifdef __GENERIC_PER_CPU
...
...
@@ -296,10 +300,6 @@ static void __init setup_per_cpu_areas(void)
memcpy
(
ptr
,
__per_cpu_start
,
size
);
}
}
#else
static
inline
void
setup_per_cpu_areas
(
void
)
{
}
#endif
/* !__GENERIC_PER_CPU */
/* Called by boot processor to activate the rest. */
...
...
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