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
9b87a519
Commit
9b87a519
authored
May 12, 2003
by
Steven Cole
Committed by
Linus Torvalds
May 12, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] more potentially undefined preprocessor symbols
Here are three more fixes which I missed in the previous patch.
parent
1bdbda8c
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
arch/parisc/hpux/wrappers.S
arch/parisc/hpux/wrappers.S
+1
-1
include/linux/smp_lock.h
include/linux/smp_lock.h
+1
-1
include/linux/tpqic02.h
include/linux/tpqic02.h
+1
-1
No files found.
arch/parisc/hpux/wrappers.S
View file @
9b87a519
...
@@ -129,7 +129,7 @@ fork_exit:
...
@@ -129,7 +129,7 @@ fork_exit:
/
*
Set
the
return
value
for
the
child
*/
/
*
Set
the
return
value
for
the
child
*/
hpux_child_return
:
hpux_child_return
:
#if
CONFIG_SMP || CONFIG_PREEMPT
#if
defined(CONFIG_SMP) || defined(CONFIG_PREEMPT)
bl
schedule_tail
,
%
r2
bl
schedule_tail
,
%
r2
nop
nop
#endif
#endif
...
...
include/linux/smp_lock.h
View file @
9b87a519
...
@@ -5,7 +5,7 @@
...
@@ -5,7 +5,7 @@
#include <linux/sched.h>
#include <linux/sched.h>
#include <linux/spinlock.h>
#include <linux/spinlock.h>
#if
CONFIG_SMP || CONFIG_PREEMPT
#if
defined(CONFIG_SMP) || defined(CONFIG_PREEMPT)
extern
spinlock_t
kernel_flag
;
extern
spinlock_t
kernel_flag
;
...
...
include/linux/tpqic02.h
View file @
9b87a519
...
@@ -12,7 +12,7 @@
...
@@ -12,7 +12,7 @@
#include <linux/config.h>
#include <linux/config.h>
#if
CONFIG_QIC02_TAPE || CONFIG_QIC02_TAPE_MODULE
#if
defined(CONFIG_QIC02_TAPE) || defined(CONFIG_QIC02_TAPE_MODULE)
/* need to have QIC02_TAPE_DRIVE and QIC02_TAPE_IFC expand to something */
/* need to have QIC02_TAPE_DRIVE and QIC02_TAPE_IFC expand to something */
#include <linux/mtio.h>
#include <linux/mtio.h>
...
...
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