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
0dafd941
Commit
0dafd941
authored
Apr 20, 2003
by
David S. Miller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[SCSI QLOGICFC]: Update for irqreturn_t.
parent
7034227a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
drivers/scsi/qlogicfc.c
drivers/scsi/qlogicfc.c
+4
-2
No files found.
drivers/scsi/qlogicfc.c
View file @
0dafd941
...
@@ -660,7 +660,7 @@ static int isp2x00_reset_hardware(struct Scsi_Host *);
...
@@ -660,7 +660,7 @@ static int isp2x00_reset_hardware(struct Scsi_Host *);
static
int
isp2x00_mbox_command
(
struct
Scsi_Host
*
,
u_short
[]);
static
int
isp2x00_mbox_command
(
struct
Scsi_Host
*
,
u_short
[]);
static
int
isp2x00_return_status
(
Scsi_Cmnd
*
,
struct
Status_Entry
*
);
static
int
isp2x00_return_status
(
Scsi_Cmnd
*
,
struct
Status_Entry
*
);
static
void
isp2x00_intr_handler
(
int
,
void
*
,
struct
pt_regs
*
);
static
void
isp2x00_intr_handler
(
int
,
void
*
,
struct
pt_regs
*
);
static
void
do_isp2x00_intr_handler
(
int
,
void
*
,
struct
pt_regs
*
);
static
irqreturn_t
do_isp2x00_intr_handler
(
int
,
void
*
,
struct
pt_regs
*
);
static
int
isp2x00_make_portdb
(
struct
Scsi_Host
*
);
static
int
isp2x00_make_portdb
(
struct
Scsi_Host
*
);
#if ISP2x00_FABRIC
#if ISP2x00_FABRIC
...
@@ -1421,7 +1421,7 @@ static void redo_port_db(unsigned long arg)
...
@@ -1421,7 +1421,7 @@ static void redo_port_db(unsigned long arg)
#define ASYNC_EVENT_INTERRUPT 0x01
#define ASYNC_EVENT_INTERRUPT 0x01
void
do_isp2x00_intr_handler
(
int
irq
,
void
*
dev_id
,
struct
pt_regs
*
regs
)
irqreturn_t
do_isp2x00_intr_handler
(
int
irq
,
void
*
dev_id
,
struct
pt_regs
*
regs
)
{
{
struct
Scsi_Host
*
host
=
dev_id
;
struct
Scsi_Host
*
host
=
dev_id
;
unsigned
long
flags
;
unsigned
long
flags
;
...
@@ -1429,6 +1429,8 @@ void do_isp2x00_intr_handler(int irq, void *dev_id, struct pt_regs *regs)
...
@@ -1429,6 +1429,8 @@ void do_isp2x00_intr_handler(int irq, void *dev_id, struct pt_regs *regs)
spin_lock_irqsave
(
host
->
host_lock
,
flags
);
spin_lock_irqsave
(
host
->
host_lock
,
flags
);
isp2x00_intr_handler
(
irq
,
dev_id
,
regs
);
isp2x00_intr_handler
(
irq
,
dev_id
,
regs
);
spin_unlock_irqrestore
(
host
->
host_lock
,
flags
);
spin_unlock_irqrestore
(
host
->
host_lock
,
flags
);
return
IRQ_HANDLED
;
}
}
void
isp2x00_intr_handler
(
int
irq
,
void
*
dev_id
,
struct
pt_regs
*
regs
)
void
isp2x00_intr_handler
(
int
irq
,
void
*
dev_id
,
struct
pt_regs
*
regs
)
...
...
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