Loading drivers/soc/qcom/minidump_log.c +1 −1 Original line number Diff line number Diff line Loading @@ -599,7 +599,7 @@ static void md_register_trace_buf(void) struct md_region md_entry; void *buffer_start; buffer_start = kmalloc(MD_FTRACE_BUF_SIZE, GFP_KERNEL); buffer_start = kzalloc(MD_FTRACE_BUF_SIZE, GFP_KERNEL); if (!buffer_start) return; Loading drivers/soc/qcom/qcom_wdt_core.c +1 −1 Original line number Diff line number Diff line Loading @@ -259,7 +259,7 @@ static void boot_log_init(void) else size = BOOT_LOG_SIZE; start = kmalloc(size, GFP_KERNEL); start = kzalloc(size, GFP_KERNEL); if (!start) goto out; Loading Loading
drivers/soc/qcom/minidump_log.c +1 −1 Original line number Diff line number Diff line Loading @@ -599,7 +599,7 @@ static void md_register_trace_buf(void) struct md_region md_entry; void *buffer_start; buffer_start = kmalloc(MD_FTRACE_BUF_SIZE, GFP_KERNEL); buffer_start = kzalloc(MD_FTRACE_BUF_SIZE, GFP_KERNEL); if (!buffer_start) return; Loading
drivers/soc/qcom/qcom_wdt_core.c +1 −1 Original line number Diff line number Diff line Loading @@ -259,7 +259,7 @@ static void boot_log_init(void) else size = BOOT_LOG_SIZE; start = kmalloc(size, GFP_KERNEL); start = kzalloc(size, GFP_KERNEL); if (!start) goto out; Loading