Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f9ce28f9 authored by Mark Brown's avatar Mark Brown
Browse files

Merge branch 'fix/fsl-espi' of...

Merge branch 'fix/fsl-espi' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi into spi-fsl-espi
parents 923ab15e 5c0ba577
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -455,8 +455,8 @@ static void fsl_espi_cpu_irq(struct mpc8xxx_spi *mspi, u32 events)

		mspi->len -= rx_nr_bytes;

		if (mspi->rx) {
			*(u32 *)mspi->rx = rx_data;
		if (rx_nr_bytes && mspi->rx) {
			mspi->get_rx(rx_data, mspi);
			mspi->rx += 4;
		}
	}