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
01ea7c89
Commit
01ea7c89
authored
Jul 17, 2003
by
Alan Cox
Committed by
Linus Torvalds
Jul 17, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] sym53c8xxx wasnt updated to new irq code etc
parent
93cf74a8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
drivers/scsi/sym53c8xx.c
drivers/scsi/sym53c8xx.c
+4
-3
No files found.
drivers/scsi/sym53c8xx.c
View file @
01ea7c89
...
...
@@ -1327,7 +1327,7 @@ MODULE_PARM(sym53c8xx, "s");
#define SetScsiAbortResult(cmd) SetScsiResult(cmd, DID_ABORT, 0xff)
#endif
static
void
sym53c8xx_intr
(
int
irq
,
void
*
dev_id
,
struct
pt_regs
*
regs
);
static
irqreturn_t
sym53c8xx_intr
(
int
irq
,
void
*
dev_id
,
struct
pt_regs
*
regs
);
static
void
sym53c8xx_timeout
(
unsigned
long
np
);
#define initverbose (driver_setup.verbose)
...
...
@@ -7374,7 +7374,7 @@ void ncr_complete (ncb_p np, ccb_p cp)
}
if
(
cp
->
xerr_status
&
XE_BAD_PHASE
)
{
PRINT_ADDR
(
cmd
);
printk
(
"i
llegal
scsi phase (4/5).
\n
"
);
printk
(
"i
nvalid
scsi phase (4/5).
\n
"
);
}
if
(
cp
->
xerr_status
&
XE_SODL_UNRUN
)
{
PRINT_ADDR
(
cmd
);
...
...
@@ -13660,7 +13660,7 @@ printk("sym53c8xx : command successfully queued\n");
** routine for each host that uses this IRQ.
*/
static
void
sym53c8xx_intr
(
int
irq
,
void
*
dev_id
,
struct
pt_regs
*
regs
)
static
irqreturn_t
sym53c8xx_intr
(
int
irq
,
void
*
dev_id
,
struct
pt_regs
*
regs
)
{
unsigned
long
flags
;
ncb_p
np
=
(
ncb_p
)
dev_id
;
...
...
@@ -13685,6 +13685,7 @@ static void sym53c8xx_intr(int irq, void *dev_id, struct pt_regs * regs)
ncr_flush_done_cmds
(
done_list
);
NCR_UNLOCK_SCSI_DONE
(
done_list
->
device
->
host
,
flags
);
}
return
IRQ_HANDLED
;
}
/*
...
...
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