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-v6.17-merge-window' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi

Pull spi fixes from Mark Brown:
"There's one fix here for an issue with the CS42L43 where we were
allocating a single property for client devices as just that property
rather than a terminated array of properties like we are supposed to.

We also have an update to the MAINTAINERS file for some Renesas
devices"

* tag 'spi-fix-v6.17-merge-window' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi:
spi: cs42l43: Property entry should be a null-terminated array
MAINTAINERS: Add entries for the RZ/V2H(P) RSPI

+9 -1
+8
MAINTAINERS
··· 21487 21487 F: Documentation/devicetree/bindings/net/renesas,rzv2h-gbeth.yaml 21488 21488 F: drivers/net/ethernet/stmicro/stmmac/dwmac-renesas-gbeth.c 21489 21489 21490 + RENESAS RZ/V2H(P) RSPI DRIVER 21491 + M: Fabrizio Castro <fabrizio.castro.jz@renesas.com> 21492 + L: linux-spi@vger.kernel.org 21493 + L: linux-renesas-soc@vger.kernel.org 21494 + S: Maintained 21495 + F: Documentation/devicetree/bindings/spi/renesas,rzv2h-rspi.yaml 21496 + F: drivers/spi/spi-rzv2h-rspi.c 21497 + 21490 21498 RENESAS RZ/V2H(P) USB2PHY PORT RESET DRIVER 21491 21499 M: Fabrizio Castro <fabrizio.castro.jz@renesas.com> 21492 21500 M: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
+1 -1
drivers/spi/spi-cs42l43.c
··· 295 295 struct spi_board_info *info; 296 296 297 297 if (spkid >= 0) { 298 - props = devm_kmalloc(priv->dev, sizeof(*props), GFP_KERNEL); 298 + props = devm_kcalloc(priv->dev, 2, sizeof(*props), GFP_KERNEL); 299 299 if (!props) 300 300 return NULL; 301 301