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
fd30c373
Commit
fd30c373
authored
May 13, 2014
by
Mark Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branches 'spi/fix/pxa2xx' and 'spi/fix/qup' into spi-linus
parents
6c7bdf2d
111e0a9d
3d89e141
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
17 deletions
+1
-17
drivers/spi/spi-pxa2xx-dma.c
drivers/spi/spi-pxa2xx-dma.c
+0
-16
drivers/spi/spi-qup.c
drivers/spi/spi-qup.c
+1
-1
No files found.
drivers/spi/spi-pxa2xx-dma.c
View file @
fd30c373
...
...
@@ -29,18 +29,6 @@ static int pxa2xx_spi_map_dma_buffer(struct driver_data *drv_data,
struct
sg_table
*
sgt
;
void
*
buf
,
*
pbuf
;
/*
* Some DMA controllers have problems transferring buffers that are
* not multiple of 4 bytes. So we truncate the transfer so that it
* is suitable for such controllers, and handle the trailing bytes
* manually after the DMA completes.
*
* REVISIT: It would be better if this information could be
* retrieved directly from the DMA device in a similar way than
* ->copy_align etc. is done.
*/
len
=
ALIGN
(
drv_data
->
len
,
4
);
if
(
dir
==
DMA_TO_DEVICE
)
{
dmadev
=
drv_data
->
tx_chan
->
device
->
dev
;
sgt
=
&
drv_data
->
tx_sgt
;
...
...
@@ -144,12 +132,8 @@ static void pxa2xx_spi_dma_transfer_complete(struct driver_data *drv_data,
if
(
!
error
)
{
pxa2xx_spi_unmap_dma_buffers
(
drv_data
);
/* Handle the last bytes of unaligned transfer */
drv_data
->
tx
+=
drv_data
->
tx_map_len
;
drv_data
->
write
(
drv_data
);
drv_data
->
rx
+=
drv_data
->
rx_map_len
;
drv_data
->
read
(
drv_data
);
msg
->
actual_length
+=
drv_data
->
len
;
msg
->
state
=
pxa2xx_spi_next_transfer
(
drv_data
);
...
...
drivers/spi/spi-qup.c
View file @
fd30c373
...
...
@@ -734,7 +734,7 @@ static int spi_qup_remove(struct platform_device *pdev)
int
ret
;
ret
=
pm_runtime_get_sync
(
&
pdev
->
dev
);
if
(
ret
)
if
(
ret
<
0
)
return
ret
;
ret
=
spi_qup_set_state
(
controller
,
QUP_STATE_RESET
);
...
...
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