Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci-2.6.23
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci-2.6.23
Commits
412edf65
Commit
412edf65
authored
Jul 16, 2007
by
Stefan Richter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
firewire: fw-sbp2: convert to new SCSI data buffer accessors
Signed-off-by:
Stefan Richter
<
stefanr@s5r6.in-berlin.de
>
parent
9c9bdf4d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
9 deletions
+7
-9
drivers/firewire/fw-sbp2.c
drivers/firewire/fw-sbp2.c
+7
-9
No files found.
drivers/firewire/fw-sbp2.c
View file @
412edf65
...
@@ -840,7 +840,6 @@ complete_command_orb(struct sbp2_orb *base_orb, struct sbp2_status *status)
...
@@ -840,7 +840,6 @@ complete_command_orb(struct sbp2_orb *base_orb, struct sbp2_status *status)
container_of
(
base_orb
,
struct
sbp2_command_orb
,
base
);
container_of
(
base_orb
,
struct
sbp2_command_orb
,
base
);
struct
fw_unit
*
unit
=
orb
->
unit
;
struct
fw_unit
*
unit
=
orb
->
unit
;
struct
fw_device
*
device
=
fw_device
(
unit
->
device
.
parent
);
struct
fw_device
*
device
=
fw_device
(
unit
->
device
.
parent
);
struct
scatterlist
*
sg
;
int
result
;
int
result
;
if
(
status
!=
NULL
)
{
if
(
status
!=
NULL
)
{
...
@@ -876,11 +875,10 @@ complete_command_orb(struct sbp2_orb *base_orb, struct sbp2_status *status)
...
@@ -876,11 +875,10 @@ complete_command_orb(struct sbp2_orb *base_orb, struct sbp2_status *status)
dma_unmap_single
(
device
->
card
->
device
,
orb
->
base
.
request_bus
,
dma_unmap_single
(
device
->
card
->
device
,
orb
->
base
.
request_bus
,
sizeof
(
orb
->
request
),
DMA_TO_DEVICE
);
sizeof
(
orb
->
request
),
DMA_TO_DEVICE
);
if
(
orb
->
cmd
->
use_sg
>
0
)
{
if
(
scsi_sg_count
(
orb
->
cmd
)
>
0
)
sg
=
(
struct
scatterlist
*
)
orb
->
cmd
->
request_buffer
;
dma_unmap_sg
(
device
->
card
->
device
,
scsi_sglist
(
orb
->
cmd
),
dma_unmap_sg
(
device
->
card
->
device
,
sg
,
orb
->
cmd
->
use_sg
,
scsi_sg_count
(
orb
->
cmd
)
,
orb
->
cmd
->
sc_data_direction
);
orb
->
cmd
->
sc_data_direction
);
}
if
(
orb
->
page_table_bus
!=
0
)
if
(
orb
->
page_table_bus
!=
0
)
dma_unmap_single
(
device
->
card
->
device
,
orb
->
page_table_bus
,
dma_unmap_single
(
device
->
card
->
device
,
orb
->
page_table_bus
,
...
@@ -901,8 +899,8 @@ static int sbp2_command_orb_map_scatterlist(struct sbp2_command_orb *orb)
...
@@ -901,8 +899,8 @@ static int sbp2_command_orb_map_scatterlist(struct sbp2_command_orb *orb)
int
sg_len
,
l
,
i
,
j
,
count
;
int
sg_len
,
l
,
i
,
j
,
count
;
dma_addr_t
sg_addr
;
dma_addr_t
sg_addr
;
sg
=
(
struct
scatterlist
*
)
orb
->
cmd
->
request_buffer
;
sg
=
scsi_sglist
(
orb
->
cmd
)
;
count
=
dma_map_sg
(
device
->
card
->
device
,
sg
,
orb
->
cmd
->
use_sg
,
count
=
dma_map_sg
(
device
->
card
->
device
,
sg
,
scsi_sg_count
(
orb
->
cmd
)
,
orb
->
cmd
->
sc_data_direction
);
orb
->
cmd
->
sc_data_direction
);
if
(
count
==
0
)
if
(
count
==
0
)
goto
fail
;
goto
fail
;
...
@@ -971,7 +969,7 @@ static int sbp2_command_orb_map_scatterlist(struct sbp2_command_orb *orb)
...
@@ -971,7 +969,7 @@ static int sbp2_command_orb_map_scatterlist(struct sbp2_command_orb *orb)
return
0
;
return
0
;
fail_page_table:
fail_page_table:
dma_unmap_sg
(
device
->
card
->
device
,
sg
,
orb
->
cmd
->
use_sg
,
dma_unmap_sg
(
device
->
card
->
device
,
sg
,
scsi_sg_count
(
orb
->
cmd
)
,
orb
->
cmd
->
sc_data_direction
);
orb
->
cmd
->
sc_data_direction
);
fail:
fail:
return
-
ENOMEM
;
return
-
ENOMEM
;
...
@@ -1031,7 +1029,7 @@ static int sbp2_scsi_queuecommand(struct scsi_cmnd *cmd, scsi_done_fn_t done)
...
@@ -1031,7 +1029,7 @@ static int sbp2_scsi_queuecommand(struct scsi_cmnd *cmd, scsi_done_fn_t done)
orb
->
request
.
misc
|=
orb
->
request
.
misc
|=
COMMAND_ORB_DIRECTION
(
SBP2_DIRECTION_TO_MEDIA
);
COMMAND_ORB_DIRECTION
(
SBP2_DIRECTION_TO_MEDIA
);
if
(
cmd
->
use_sg
&&
sbp2_command_orb_map_scatterlist
(
orb
)
<
0
)
if
(
scsi_sg_count
(
cmd
)
&&
sbp2_command_orb_map_scatterlist
(
orb
)
<
0
)
goto
fail_mapping
;
goto
fail_mapping
;
fw_memcpy_to_be32
(
&
orb
->
request
,
&
orb
->
request
,
sizeof
(
orb
->
request
));
fw_memcpy_to_be32
(
&
orb
->
request
,
&
orb
->
request
,
sizeof
(
orb
->
request
));
...
...
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