Message ID | 20200413180406.1826-1-andriy.shevchenko@linux.intel.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 0dadde344d965566589cd82797893d5aa06557a3 |
Headers | show |
Series | [v1] spi: Respect DataBitLength field of SpiSerialBusV2() ACPI resource | expand |
On Mon, 13 Apr 2020 21:04:06 +0300, Andy Shevchenko wrote: > By unknown reason the commit 64bee4d28c9e > ("spi / ACPI: add ACPI enumeration support") > missed the DataBitLength property to encounter when parse SPI slave > device data from ACPI. > > Fill the gap here. > > [...] Applied, thanks! [1/1] spi: Respect DataBitLength field of SpiSerialBusV2() ACPI resource commit: 0dadde344d965566589cd82797893d5aa06557a3 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.c b/drivers/spi/spi.c index c92c89467e7e..e0e27fe06878 100644 --- a/drivers/spi/spi.c +++ b/drivers/spi/spi.c @@ -2111,6 +2111,7 @@ static int acpi_spi_add_resource(struct acpi_resource *ares, void *data) } lookup->max_speed_hz = sb->connection_speed; + lookup->bits_per_word = sb->data_bit_length; if (sb->clock_phase == ACPI_SPI_SECOND_PHASE) lookup->mode |= SPI_CPHA;
By unknown reason the commit 64bee4d28c9e ("spi / ACPI: add ACPI enumeration support") missed the DataBitLength property to encounter when parse SPI slave device data from ACPI. Fill the gap here. Fixes: 64bee4d28c9e ("spi / ACPI: add ACPI enumeration support") Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> --- drivers/spi/spi.c | 1 + 1 file changed, 1 insertion(+)