Message ID | 20221027-b4-spicc-burst-delay-fix-v2-0-8cc2bab3417a@linaro.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [v2] spi: meson-spicc: fix do_div build error on non-arm64 | expand |
On Wed, 02 Nov 2022 09:46:01 +0100, Neil Armstrong wrote: > This fixes : > error: passing argument 1 of '__div64_32' from incompatible pointer type > > By passing an uint64_t as first variable to do_div(). > > Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next Thanks! [1/1] spi: meson-spicc: fix do_div build error on non-arm64 commit: 134af9aa88453aeb9224e407092530ebba366c6c All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. Thanks, Mark
diff --git a/drivers/spi/spi-meson-spicc.c b/drivers/spi/spi-meson-spicc.c index 52bffab18329..1b4195c54ee2 100644 --- a/drivers/spi/spi-meson-spicc.c +++ b/drivers/spi/spi-meson-spicc.c @@ -387,7 +387,7 @@ static int meson_spicc_transfer_one(struct spi_master *master, struct spi_transfer *xfer) { struct meson_spicc_device *spicc = spi_master_get_devdata(master); - unsigned long timeout; + uint64_t timeout; /* Store current transfer */ spicc->xfer = xfer;