mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 23:34:05 +08:00
ACPICA: Use os_allocate_zeroed
ACPICA commit 2b896c59e53243c95600f2a3f7e1fd02c044cb37 Eliminates an unnecessary memset. Suggested-by: Amitoj Kaur Chawla <amitoj1606@gmail.com> Link: https://github.com/acpica/acpica/commit/2b896c59 Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com> Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Lv Zheng <lv.zheng@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
d8303ace36
commit
9556ec4ec1
@ -95,13 +95,11 @@ acpi_ut_create_list(const char *list_name,
|
||||
{
|
||||
struct acpi_memory_list *cache;
|
||||
|
||||
cache = acpi_os_allocate(sizeof(struct acpi_memory_list));
|
||||
cache = acpi_os_allocate_zeroed(sizeof(struct acpi_memory_list));
|
||||
if (!cache) {
|
||||
return (AE_NO_MEMORY);
|
||||
}
|
||||
|
||||
memset(cache, 0, sizeof(struct acpi_memory_list));
|
||||
|
||||
cache->list_name = list_name;
|
||||
cache->object_size = object_size;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user