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
Kirill Smelkov
linux
Commits
d4f3a651
Commit
d4f3a651
authored
Oct 09, 2020
by
Mark Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'spi/for-5.9' into spi-linus
parents
549738f1
45f0bbda
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
3 deletions
+14
-3
MAINTAINERS
MAINTAINERS
+7
-0
drivers/spi/spi-fsl-dspi.c
drivers/spi/spi-fsl-dspi.c
+3
-2
drivers/spi/spi-imx.c
drivers/spi/spi-imx.c
+4
-1
No files found.
MAINTAINERS
View file @
d4f3a651
...
@@ -16725,6 +16725,13 @@ S: Maintained
...
@@ -16725,6 +16725,13 @@ S: Maintained
F: Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
F: Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
F: drivers/gpio/gpio-dwapb.c
F: drivers/gpio/gpio-dwapb.c
SYNOPSYS DESIGNWARE APB SSI DRIVER
M: Serge Semin <fancer.lancer@gmail.com>
L: linux-spi@vger.kernel.org
S: Supported
F: Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
F: drivers/spi/spi-dw*
SYNOPSYS DESIGNWARE AXI DMAC DRIVER
SYNOPSYS DESIGNWARE AXI DMAC DRIVER
M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
M: Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
S: Maintained
S: Maintained
...
...
drivers/spi/spi-fsl-dspi.c
View file @
d4f3a651
...
@@ -1281,6 +1281,9 @@ static int dspi_probe(struct platform_device *pdev)
...
@@ -1281,6 +1281,9 @@ static int dspi_probe(struct platform_device *pdev)
if
(
!
ctlr
)
if
(
!
ctlr
)
return
-
ENOMEM
;
return
-
ENOMEM
;
spi_controller_set_devdata
(
ctlr
,
dspi
);
platform_set_drvdata
(
pdev
,
dspi
);
dspi
->
pdev
=
pdev
;
dspi
->
pdev
=
pdev
;
dspi
->
ctlr
=
ctlr
;
dspi
->
ctlr
=
ctlr
;
...
@@ -1417,8 +1420,6 @@ static int dspi_probe(struct platform_device *pdev)
...
@@ -1417,8 +1420,6 @@ static int dspi_probe(struct platform_device *pdev)
if
(
dspi
->
devtype_data
->
trans_mode
!=
DSPI_DMA_MODE
)
if
(
dspi
->
devtype_data
->
trans_mode
!=
DSPI_DMA_MODE
)
ctlr
->
ptp_sts_supported
=
true
;
ctlr
->
ptp_sts_supported
=
true
;
platform_set_drvdata
(
pdev
,
dspi
);
ret
=
spi_register_controller
(
ctlr
);
ret
=
spi_register_controller
(
ctlr
);
if
(
ret
!=
0
)
{
if
(
ret
!=
0
)
{
dev_err
(
&
pdev
->
dev
,
"Problem registering DSPI ctlr
\n
"
);
dev_err
(
&
pdev
->
dev
,
"Problem registering DSPI ctlr
\n
"
);
...
...
drivers/spi/spi-imx.c
View file @
d4f3a651
...
@@ -1707,7 +1707,7 @@ static int spi_imx_probe(struct platform_device *pdev)
...
@@ -1707,7 +1707,7 @@ static int spi_imx_probe(struct platform_device *pdev)
ret
=
spi_bitbang_start
(
&
spi_imx
->
bitbang
);
ret
=
spi_bitbang_start
(
&
spi_imx
->
bitbang
);
if
(
ret
)
{
if
(
ret
)
{
dev_err
(
&
pdev
->
dev
,
"bitbang start failed with %d
\n
"
,
ret
);
dev_err
(
&
pdev
->
dev
,
"bitbang start failed with %d
\n
"
,
ret
);
goto
out_
runtime_pm_pu
t
;
goto
out_
bitbang_star
t
;
}
}
dev_info
(
&
pdev
->
dev
,
"probed
\n
"
);
dev_info
(
&
pdev
->
dev
,
"probed
\n
"
);
...
@@ -1717,6 +1717,9 @@ static int spi_imx_probe(struct platform_device *pdev)
...
@@ -1717,6 +1717,9 @@ static int spi_imx_probe(struct platform_device *pdev)
return
ret
;
return
ret
;
out_bitbang_start:
if
(
spi_imx
->
devtype_data
->
has_dmamode
)
spi_imx_sdma_exit
(
spi_imx
);
out_runtime_pm_put:
out_runtime_pm_put:
pm_runtime_dont_use_autosuspend
(
spi_imx
->
dev
);
pm_runtime_dont_use_autosuspend
(
spi_imx
->
dev
);
pm_runtime_put_sync
(
spi_imx
->
dev
);
pm_runtime_put_sync
(
spi_imx
->
dev
);
...
...
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