Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
fd5c4cd
Revert "spi: dw: Wait for idle after TX"
pelwell Nov 11, 2025
97d63b8
Revert "spi: dw: Let the DMAC set the transfer widths"
pelwell Nov 11, 2025
cd1ae32
Revert "spi: dw: Clamp the minimum clock speed"
pelwell Nov 11, 2025
17abe5b
Revert "spi: dw: Fix non-DMA transmit-only transfers"
pelwell Nov 11, 2025
869e7ab
Revert "spi: dw: don't immediately kill DMA transfers if an error occ…
pelwell Nov 11, 2025
55cdf7e
Revert "spi: dw: Save bandwidth with the TMOD_RO feature"
pelwell Nov 11, 2025
eb6f9af
Revert "spi: dw: Save bandwidth with the TMOD_TO feature"
pelwell Nov 11, 2025
bd27832
Revert "spi: dw: Handle any number of gpiod CS lines"
pelwell Nov 11, 2025
a68f668
Revert "spi: dw: Handle combined tx and rx messages"
pelwell Nov 11, 2025
2bbbe19
spi: dw: rename the spi controller to ctlr
benoitmonin Oct 2, 2025
e332ffb
spi: dw: add target mode support
benoitmonin Oct 2, 2025
5ca77f0
spi: dw: Handle combined tx and rx messages
pelwell Nov 29, 2022
299660c
spi: dw: Handle any number of gpiod CS lines
pelwell May 13, 2024
d780263
spi: dw: Save bandwidth with the TMOD_TO feature
pelwell Jul 1, 2024
6d2bc5a
spi: dw: Save bandwidth with the TMOD_RO feature
pelwell Jul 1, 2024
b304bda
spi: dw: don't immediately kill DMA transfers if an error occurs
P33M Jul 22, 2024
bced23a
spi: dw: Fix non-DMA transmit-only transfers
pelwell Jul 29, 2024
9f4fb2a
spi: dw: Clamp the minimum clock speed
pelwell Jul 31, 2024
42871ef
spi: dw: Let the DMAC set the transfer widths
pelwell Sep 19, 2024
0be3771
spi: dw: Wait for idle after TX
pelwell Feb 3, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions drivers/spi/spi-dw-bt1.c
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ static int dw_spi_bt1_probe(struct platform_device *pdev)

pm_runtime_enable(&pdev->dev);

ret = dw_spi_add_host(&pdev->dev, dws);
ret = dw_spi_add_controller(&pdev->dev, dws);
if (ret) {
pm_runtime_disable(&pdev->dev);
return ret;
Expand All @@ -303,7 +303,7 @@ static void dw_spi_bt1_remove(struct platform_device *pdev)
{
struct dw_spi_bt1 *dwsbt1 = platform_get_drvdata(pdev);

dw_spi_remove_host(&dwsbt1->dws);
dw_spi_remove_controller(&dwsbt1->dws);

pm_runtime_disable(&pdev->dev);
}
Expand Down
Loading
Loading