logger: fix type mismatch on arm64 46/269946/2 submit/tizen/20220121.145113 submit/tizen/20220124.094500
authorŁukasz Stelmach <l.stelmach@samsung.com>
Fri, 21 Jan 2022 15:30:01 +0000 (16:30 +0100)
committerŁukasz Stelmach <l.stelmach@samsung.com>
Fri, 21 Jan 2022 18:29:07 +0000 (19:29 +0100)
Change-Id: Iba4d8d53ed2c9244e6b4f2c87e626d001f42c629
Signed-off-by: Łukasz Stelmach <l.stelmach@samsung.com>
kernel/logger.c
packaging/linux-tizen-modules-source.spec

index 9ae1698..8b2cda9 100644 (file)
 #define LOGGER_SYSTEM_BUFFER_SIZE 256
 #endif
 
-static size_t main_buffer_size = LOGGER_MAIN_BUFFER_SIZE;
+static int main_buffer_size = LOGGER_MAIN_BUFFER_SIZE;
 module_param(main_buffer_size, int, 0444);
 MODULE_PARM_DESC(main_buffer_size, "Size of the /dev/main buffer");
 
-static size_t events_buffer_size = LOGGER_EVENTS_BUFFER_SIZE;
+static int events_buffer_size = LOGGER_EVENTS_BUFFER_SIZE;
 module_param(events_buffer_size, int, 0444);
 MODULE_PARM_DESC(events_buffer_size, "Size of the /dev/events buffer");
 
-static size_t radio_buffer_size = LOGGER_RADIO_BUFFER_SIZE;
+static int radio_buffer_size = LOGGER_RADIO_BUFFER_SIZE;
 module_param(radio_buffer_size, int, 0444);
 MODULE_PARM_DESC(radio_buffer_size, "Size of the /dev/radio buffer");
 
-static size_t system_buffer_size = LOGGER_SYSTEM_BUFFER_SIZE;
+static int system_buffer_size = LOGGER_SYSTEM_BUFFER_SIZE;
 module_param(system_buffer_size, int, 0444);
 MODULE_PARM_DESC(system_buffer_size, "Size of the /dev/system buffer");
 
index c355209..a8ba991 100644 (file)
@@ -1,5 +1,5 @@
 Name:           linux-tizen-modules-source
-Version:        7.0.6
+Version:        7.0.7
 Release:        0
 License:        GPL-2.0+
 Source0:        %{name}-%{version}.tar.xz