Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'spi-fix-v7.0-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi

Pull spi fixes from Mark Brown:
"One fix for the stm32 driver which got broken for DMA chaining cases,
plus a removal of some straggling bindings for the Bikal SoC which has
been pulled out of the kernel"

* tag 'spi-fix-v7.0-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi:
spi: stm32: fix missing pointer assignment in case of dma chaining
spi: dt-bindings: snps,dw-abp-ssi: Remove unused bindings

+4 -30
+1 -30
Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
··· 26 26 properties: 27 27 compatible: 28 28 contains: 29 - enum: 30 - - baikal,bt1-sys-ssi 31 - then: 32 - properties: 33 - mux-controls: 34 - maxItems: 1 35 - required: 36 - - mux-controls 37 - else: 38 - required: 39 - - interrupts 40 - - if: 41 - properties: 42 - compatible: 43 - contains: 44 29 const: amd,pensando-elba-spi 45 30 then: 46 31 required: ··· 60 75 const: intel,mountevans-imc-ssi 61 76 - description: AMD Pensando Elba SoC SPI Controller 62 77 const: amd,pensando-elba-spi 63 - - description: Baikal-T1 SPI Controller 64 - const: baikal,bt1-ssi 65 - - description: Baikal-T1 System Boot SPI Controller 66 - const: baikal,bt1-sys-ssi 67 78 - description: Canaan Kendryte K210 SoS SPI Controller 68 79 const: canaan,k210-spi 69 80 - description: Renesas RZ/N1 SPI Controller ··· 151 170 - "#address-cells" 152 171 - "#size-cells" 153 172 - clocks 173 + - interrupts 154 174 155 175 examples: 156 176 - | ··· 171 189 reg = <1>; 172 190 rx-sample-delay-ns = <7>; 173 191 }; 174 - }; 175 - - | 176 - spi@1f040100 { 177 - compatible = "baikal,bt1-sys-ssi"; 178 - reg = <0x1f040100 0x900>, 179 - <0x1c000000 0x1000000>; 180 - #address-cells = <1>; 181 - #size-cells = <0>; 182 - mux-controls = <&boot_mux>; 183 - clocks = <&ccu_sys>; 184 - clock-names = "ssi_clk"; 185 192 }; 186 193 ...
+3
drivers/spi/spi-stm32.c
··· 1625 1625 return -EINVAL; 1626 1626 } 1627 1627 1628 + *rx_mdma_desc = _mdma_desc; 1629 + *rx_dma_desc = _dma_desc; 1630 + 1628 1631 return 0; 1629 1632 } 1630 1633