mirror of https://gitee.com/openkylin/linux.git
ACPI / property: Switch to bitmap_zalloc()
Switch to bitmap_zalloc() to show clearly what we are allocating. Besides that it returns pointer of bitmap type instead of opaque void *. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Reviewed-by: Lukas Wunner <lukas@wunner.de> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
This commit is contained in:
parent
11da3a7f84
commit
d030fd0ec5
|
@ -62,7 +62,7 @@ void acpi_extract_apple_properties(struct acpi_device *adev)
|
|||
if (!numprops)
|
||||
goto out_free;
|
||||
|
||||
valid = kcalloc(BITS_TO_LONGS(numprops), sizeof(long), GFP_KERNEL);
|
||||
valid = bitmap_zalloc(numprops, GFP_KERNEL);
|
||||
if (!valid)
|
||||
goto out_free;
|
||||
|
||||
|
@ -137,5 +137,5 @@ void acpi_extract_apple_properties(struct acpi_device *adev)
|
|||
|
||||
out_free:
|
||||
ACPI_FREE(props);
|
||||
kfree(valid);
|
||||
bitmap_free(valid);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue