Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9011bff4 authored by Len Brown's avatar Len Brown
Browse files

ACPI: delete newly added debugging macros in processor_perflib.c



Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent 7e1f19e5
Loading
Loading
Loading
Loading
+3 −7
Original line number Diff line number Diff line
@@ -563,11 +563,9 @@ static int acpi_processor_get_psd(struct acpi_processor *pr)
	union acpi_object  *psd = NULL;
	struct acpi_psd_package *pdomain;

	ACPI_FUNCTION_TRACE("acpi_processor_get_psd");

	status = acpi_evaluate_object(pr->handle, "_PSD", NULL, &buffer);
	if (ACPI_FAILURE(status)) {
		return_VALUE(-ENODEV);
		return -ENODEV;
	}

	psd = (union acpi_object *) buffer.pointer;
@@ -610,7 +608,7 @@ static int acpi_processor_get_psd(struct acpi_processor *pr)

end:
	acpi_os_free(buffer.pointer);
	return_VALUE(result);
	return result;
}

int acpi_processor_preregister_performance(
@@ -625,8 +623,6 @@ int acpi_processor_preregister_performance(
	struct acpi_processor *match_pr;
	struct acpi_psd_package *match_pdomain;

	ACPI_FUNCTION_TRACE("acpi_processor_preregister_performance");

	down(&performance_sem);

	retval = 0;
@@ -776,7 +772,7 @@ int acpi_processor_preregister_performance(
	}

	up(&performance_sem);
	return_VALUE(retval);
	return retval;
}
EXPORT_SYMBOL(acpi_processor_preregister_performance);