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
c2c80bdb
Commit
c2c80bdb
authored
Oct 07, 2015
by
Mark Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branches 'spi/fix/davinci' and 'spi/fix/sh-msiof' into spi-linus
parents
049e6dde
8494cdea
eb8d0ac4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
4 deletions
+5
-4
Documentation/devicetree/bindings/spi/sh-msiof.txt
Documentation/devicetree/bindings/spi/sh-msiof.txt
+1
-1
drivers/spi/spi-davinci.c
drivers/spi/spi-davinci.c
+4
-3
No files found.
Documentation/devicetree/bindings/spi/sh-msiof.txt
View file @
c2c80bdb
...
...
@@ -51,7 +51,7 @@ Optional properties, deprecated for soctype-specific bindings:
- renesas,tx-fifo-size : Overrides the default tx fifo size given in words
(default is 64)
- renesas,rx-fifo-size : Overrides the default rx fifo size given in words
(default is 64
, or 256 on R-Car Gen2
)
(default is 64)
Pinctrl properties might be needed, too. See
Documentation/devicetree/bindings/pinctrl/renesas,*.
...
...
drivers/spi/spi-davinci.c
View file @
c2c80bdb
...
...
@@ -992,11 +992,12 @@ static int davinci_spi_probe(struct platform_device *pdev)
goto
free_master
;
}
dspi
->
irq
=
platform_get_irq
(
pdev
,
0
);
if
(
dspi
->
irq
<=
0
)
{
ret
=
platform_get_irq
(
pdev
,
0
);
if
(
ret
==
0
)
ret
=
-
EINVAL
;
if
(
ret
<
0
)
goto
free_master
;
}
dspi
->
irq
=
ret
;
ret
=
devm_request_threaded_irq
(
&
pdev
->
dev
,
dspi
->
irq
,
davinci_spi_irq
,
dummy_thread_fn
,
0
,
dev_name
(
&
pdev
->
dev
),
dspi
);
...
...
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