This is a note to let you know that I've just added the patch titled iio: imu: bno055: Fix missing Kconfig dependencies to the 6.5-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: iio-imu-bno055-fix-missing-kconfig-dependencies.patch and it can be found in the queue-6.5 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From c9b9cfe7d342683f624a89c3b617be18aff879e8 Mon Sep 17 00:00:00 2001 From: Jonathan Cameron <Jonathan.Cameron@xxxxxxxxxx> Date: Sun, 3 Sep 2023 12:30:52 +0100 Subject: iio: imu: bno055: Fix missing Kconfig dependencies From: Jonathan Cameron <Jonathan.Cameron@xxxxxxxxxx> commit c9b9cfe7d342683f624a89c3b617be18aff879e8 upstream. This driver uses IIO triggered buffers so it needs to select them in Kconfig. on riscv-32bit: /opt/crosstool/gcc-13.2.0-nolibc/riscv32-linux/bin/riscv32-linux-ld: drivers/iio/imu/bno055/bno055.o: in function `.L367': bno055.c:(.text+0x2c96): undefined reference to `devm_iio_triggered_buffer_setup_ext' Reported-by: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> Closes: https://lore.kernel.org/linux-next/40566b4b-3950-81fe-ff14-871d8c447627@xxxxxxxxxxxxx/ Fixes: 4aefe1c2bd0c ("iio: imu: add Bosch Sensortec BNO055 core driver") Cc: Andrea Merello <andrea.merello@xxxxxx> Acked-by: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> Tested-by: Randy Dunlap <rdunlap@xxxxxxxxxxxxx> Link: https://lore.kernel.org/r/20230903113052.846298-1-jic23@xxxxxxxxxx Cc: <Stable@xxxxxxxxxxxxxxx> Signed-off-by: Jonathan Cameron <Jonathan.Cameron@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/iio/imu/bno055/Kconfig | 2 ++ 1 file changed, 2 insertions(+) --- a/drivers/iio/imu/bno055/Kconfig +++ b/drivers/iio/imu/bno055/Kconfig @@ -2,6 +2,8 @@ config BOSCH_BNO055 tristate + select IIO_BUFFER + select IIO_TRIGGERED_BUFFER config BOSCH_BNO055_SERIAL tristate "Bosch BNO055 attached via UART" Patches currently in stable-queue which might be from Jonathan.Cameron@xxxxxxxxxx are queue-6.5/iio-addac-kconfig-update-ad74413r-selections.patch queue-6.5/iio-dac-ad3552r-correct-device-ids.patch queue-6.5/iio-admv1013-add-mixer_vgate-corner-cases.patch queue-6.5/iio-pressure-dps310-adjust-timeout-settings.patch queue-6.5/iio-adc-imx8qxp-fix-address-for-command-buffer-registers.patch queue-6.5/iio-cros_ec-fix-an-use-after-free-in-cros_ec_sensors_push_data.patch queue-6.5/iio-pressure-bmp280-fix-null-pointer-exception.patch queue-6.5/iio-adc-ad7192-correct-reference-voltage.patch queue-6.5/iio-imu-bno055-fix-missing-kconfig-dependencies.patch queue-6.5/iio-pressure-ms5611-ms5611_prom_is_valid-false-negative-bug.patch