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
0a076035
Commit
0a076035
authored
Jun 14, 2012
by
Vinod Koul
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fixes' into next
parents
f7ceb362
fdec53d5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
16 deletions
+10
-16
drivers/dma/pl330.c
drivers/dma/pl330.c
+10
-16
No files found.
drivers/dma/pl330.c
View file @
0a076035
...
...
@@ -392,6 +392,8 @@ struct pl330_req {
struct
pl330_reqcfg
*
cfg
;
/* Pointer to first xfer in the request. */
struct
pl330_xfer
*
x
;
/* Hook to attach to DMAC's list of reqs with due callback */
struct
list_head
rqd
;
};
/*
...
...
@@ -461,8 +463,6 @@ struct _pl330_req {
/* Number of bytes taken to setup MC for the req */
u32
mc_len
;
struct
pl330_req
*
r
;
/* Hook to attach to DMAC's list of reqs with due callback */
struct
list_head
rqd
;
};
/* ToBeDone for tasklet */
...
...
@@ -1683,7 +1683,7 @@ static void pl330_dotask(unsigned long data)
/* Returns 1 if state was updated, 0 otherwise */
static
int
pl330_update
(
const
struct
pl330_info
*
pi
)
{
struct
_pl330_req
*
rqdone
;
struct
pl330_req
*
rqdone
,
*
tmp
;
struct
pl330_dmac
*
pl330
;
unsigned
long
flags
;
void
__iomem
*
regs
;
...
...
@@ -1750,7 +1750,10 @@ static int pl330_update(const struct pl330_info *pi)
if
(
active
==
-
1
)
/* Aborted */
continue
;
rqdone
=
&
thrd
->
req
[
active
];
/* Detach the req */
rqdone
=
thrd
->
req
[
active
].
r
;
thrd
->
req
[
active
].
r
=
NULL
;
mark_free
(
thrd
,
active
);
/* Get going again ASAP */
...
...
@@ -1762,20 +1765,11 @@ static int pl330_update(const struct pl330_info *pi)
}
/* Now that we are in no hurry, do the callbacks */
while
(
!
list_empty
(
&
pl330
->
req_done
))
{
struct
pl330_req
*
r
;
rqdone
=
container_of
(
pl330
->
req_done
.
next
,
struct
_pl330_req
,
rqd
);
list_del_init
(
&
rqdone
->
rqd
);
/* Detach the req */
r
=
rqdone
->
r
;
rqdone
->
r
=
NULL
;
list_for_each_entry_safe
(
rqdone
,
tmp
,
&
pl330
->
req_done
,
rqd
)
{
list_del
(
&
rqdone
->
rqd
);
spin_unlock_irqrestore
(
&
pl330
->
lock
,
flags
);
_callback
(
r
,
PL330_ERR_NONE
);
_callback
(
r
qdone
,
PL330_ERR_NONE
);
spin_lock_irqsave
(
&
pl330
->
lock
,
flags
);
}
...
...
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