lib/circbuf: Make circbuf selectable symbol
authorLoic Poulain <loic.poulain@linaro.org>
Thu, 25 Nov 2021 17:16:14 +0000 (18:16 +0100)
committerMarek Vasut <marex@denx.de>
Wed, 26 Jan 2022 22:23:17 +0000 (23:23 +0100)
It is currenly only used from usbtty driver but make it properly
selectable via Kconfig symbol, for future usage.

Signed-off-by: Loic Poulain <loic.poulain@linaro.org>
lib/Kconfig
lib/Makefile

index 38051cc..52d4b27 100644 (file)
@@ -299,6 +299,9 @@ config TRACE_EARLY_ADDR
          the size is too small then the message which says the amount of early
          data being coped will the the same as the
 
+config CIRCBUF
+       bool "Enable circular buffer support"
+
 source lib/dhry/Kconfig
 
 menu "Security support"
index 7950e84..f223892 100644 (file)
@@ -29,7 +29,13 @@ ifneq ($(CONFIG_CHARSET),)
 obj-y += charset.o
 endif
 endif
-obj-$(CONFIG_USB_TTY) += circbuf.o
+
+ifdef CONFIG_USB_TTY
+obj-y += circbuf.o
+else
+obj-$(CONFIG_CIRCBUF) += circbuf.o
+endif
+
 obj-y += crc8.o
 obj-y += crc16.o
 obj-$(CONFIG_ERRNO_STR) += errno_str.o