Commit d030fd0e authored by Andy Shevchenko's avatar Andy Shevchenko Committed by Rafael J. Wysocki
Browse files

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: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Reviewed-by: default avatarLukas Wunner <lukas@wunner.de>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent 11da3a7f
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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);
}