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
23893419
Commit
23893419
authored
Mar 04, 2004
by
David S. Miller
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://kernel.bkbits.net/wesolows/sparc32-2.6
into nuts.davemloft.net:/disk1/BK/sparc-2.6
parents
5e2e0e24
6b71ca94
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
arch/i386/mm/extable.c
arch/i386/mm/extable.c
+2
-2
drivers/scsi/qlogicfc.c
drivers/scsi/qlogicfc.c
+1
-1
drivers/scsi/qlogicpti.c
drivers/scsi/qlogicpti.c
+1
-1
No files found.
arch/i386/mm/extable.c
View file @
23893419
...
...
@@ -12,7 +12,7 @@ int fixup_exception(struct pt_regs *regs)
const
struct
exception_table_entry
*
fixup
;
#ifdef CONFIG_PNPBIOS
if
(
unlikely
((
regs
->
xcs
|
8
)
==
0x88
))
/* 0x80 or 0x88 */
if
(
unlikely
((
regs
->
xcs
&
~
15
)
==
(
GDT_ENTRY_PNPBIOS_BASE
<<
3
)))
{
extern
u32
pnp_bios_fault_eip
,
pnp_bios_fault_esp
;
extern
u32
pnp_bios_is_utter_crap
;
...
...
@@ -21,7 +21,7 @@ int fixup_exception(struct pt_regs *regs)
__asm__
volatile
(
"movl %0, %%esp
\n\t
"
"jmp *%1
\n\t
"
:
"=a"
(
pnp_bios_fault_esp
),
"=b
"
(
pnp_bios_fault_eip
));
:
:
"g"
(
pnp_bios_fault_esp
),
"g
"
(
pnp_bios_fault_eip
));
panic
(
"do_trap: can't hit this"
);
}
#endif
...
...
drivers/scsi/qlogicfc.c
View file @
23893419
...
...
@@ -411,7 +411,7 @@ static unsigned short risc_code_addr01 = 0x1000 ;
if that mbox should be copied as input. For example 0x2 would mean
only copy mbox1. */
const
u_char
mbox_param
[]
=
static
const
u_char
mbox_param
[]
=
{
0x01
,
/* MBOX_NO_OP */
0x1f
,
/* MBOX_LOAD_RAM */
...
...
drivers/scsi/qlogicpti.c
View file @
23893419
...
...
@@ -54,7 +54,7 @@ static int qptis_running = 0;
#define PACKB(a, b) (((a)<<4)|(b))
const
u_char
mbox_param
[]
=
{
static
const
u_char
mbox_param
[]
=
{
PACKB
(
1
,
1
),
/* MBOX_NO_OP */
PACKB
(
5
,
5
),
/* MBOX_LOAD_RAM */
PACKB
(
2
,
0
),
/* MBOX_EXEC_FIRMWARE */
...
...
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