From: Łukasz Stelmach Date: Fri, 21 Jan 2022 13:02:56 +0000 (+0100) Subject: logger: make variable names match X-Git-Tag: submit/tizen/20220121.145113~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8df7611e4535a66dab963c3b52b8db66ce0e4ac4;p=platform%2Fkernel%2Flinux-tizen-modules-source.git logger: make variable names match Change-Id: Ibe70c2c0cba0a722259bae4cbe40dd865ac63448 Signed-off-by: Łukasz Stelmach --- diff --git a/kernel/Makefile b/kernel/Makefile index e8efb7d..a4a8d16 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -8,10 +8,10 @@ LOGGER_SYSTEM_BUFFER_SIZE ?= 256 # See commit 0b999ae3614d0 ("Merge tag 'compiler-attributes-for-linus-v5.0-rc7'"[..]) for rationale CFLAGS_logger.o += -Wno-error=missing-attributes \ - -DLOGGER_MAIN_BUFFER_SIZE=$(LOGGER_BUFFER_SIZE_MAIN) \ - -DLOGGER_EVENTS_BUFFER_SIZE=$(LOGGER_BUFFER_SIZE_EVENTS) \ - -DLOGGER_RADIO_BUFFER_SIZE=$(LOGGER_BUFFER_SIZE_RADIO) \ - -DLOGGER_SYSTEM_BUFFER_SIZE=$(LOGGER_BUFFER_SIZE_SYSTEM) + -DLOGGER_MAIN_BUFFER_SIZE=$(LOGGER_MAIN_BUFFER_SIZE) \ + -DLOGGER_EVENTS_BUFFER_SIZE=$(LOGGER_EVENTS_BUFFER_SIZE) \ + -DLOGGER_RADIO_BUFFER_SIZE=$(LOGGER_RADIO_BUFFER_SIZE) \ + -DLOGGER_SYSTEM_BUFFER_SIZE=$(LOGGER_SYSTEM_BUFFER_SIZE) CFLAGS_proc-tsm.o += -Wno-error=missing-attributes # Build is disabled by default so that when new module is added to this repository (and -source package),