0002-stm-Add-STM-sensors-drivers-to-build-system.patch 976 B

12345678910111213141516171819202122232425262728293031323334
  1. From 6b3b528b789d3555952915bc436db6914cda5b8f Mon Sep 17 00:00:00 2001
  2. From: mario tesi <[email protected]>
  3. Date: Thu, 16 Sep 2021 15:33:29 +0200
  4. Subject: [PATCH] Added STMEMS sensor to build system
  5. Signed-off-by: mario tesi <[email protected]>
  6. ---
  7. drivers/iio/Kconfig | 1 +
  8. drivers/iio/Makefile | 1 +
  9. 2 files changed, 2 insertions(+)
  10. diff --git a/drivers/iio/Kconfig b/drivers/iio/Kconfig
  11. index 6743b18..fbe089a 100644
  12. --- a/drivers/iio/Kconfig
  13. +++ b/drivers/iio/Kconfig
  14. @@ -90,5 +90,6 @@ source "drivers/iio/potentiometer/Kconfig"
  15. source "drivers/iio/pressure/Kconfig"
  16. source "drivers/iio/proximity/Kconfig"
  17. source "drivers/iio/temperature/Kconfig"
  18. +source "drivers/iio/stm/Kconfig"
  19. endif # IIO
  20. diff --git a/drivers/iio/Makefile b/drivers/iio/Makefile
  21. index 87e4c43..8aff487 100644
  22. --- a/drivers/iio/Makefile
  23. +++ b/drivers/iio/Makefile
  24. @@ -33,3 +33,4 @@ obj-y += pressure/
  25. obj-y += proximity/
  26. obj-y += temperature/
  27. obj-y += trigger/
  28. +obj-y += stm/
  29. --
  30. 2.7.4