From: Lennart Poettering Date: Wed, 9 Nov 2022 14:08:40 +0000 (+0100) Subject: acpi-fpdt: use our usual ret_xyz naming scheme X-Git-Tag: v253-rc1~566^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ab10dfe0d5101f54501fcbbcfe0267f9720bde1a;p=thirdparty%2Fsystemd.git acpi-fpdt: use our usual ret_xyz naming scheme --- diff --git a/src/shared/acpi-fpdt.c b/src/shared/acpi-fpdt.c index cccea2f7275..c499c7e0678 100644 --- a/src/shared/acpi-fpdt.c +++ b/src/shared/acpi-fpdt.c @@ -61,7 +61,7 @@ struct acpi_fpdt_boot { uint64_t exit_services_exit; } _packed; -int acpi_get_boot_usec(usec_t *loader_start, usec_t *loader_exit) { +int acpi_get_boot_usec(usec_t *ret_loader_start, usec_t *ret_loader_exit) { _cleanup_free_ char *buf = NULL; struct acpi_table_header *tbl; size_t l = 0; @@ -138,10 +138,10 @@ int acpi_get_boot_usec(usec_t *loader_start, usec_t *loader_exit) { if (brec.exit_services_exit > NSEC_PER_HOUR) return -EINVAL; - if (loader_start) - *loader_start = brec.startup_start / 1000; - if (loader_exit) - *loader_exit = brec.exit_services_exit / 1000; + if (ret_loader_start) + *ret_loader_start = brec.startup_start / 1000; + if (ret_loader_exit) + *ret_loader_exit = brec.exit_services_exit / 1000; return 0; } diff --git a/src/shared/acpi-fpdt.h b/src/shared/acpi-fpdt.h index 9eef92bc35b..56f8c9e0770 100644 --- a/src/shared/acpi-fpdt.h +++ b/src/shared/acpi-fpdt.h @@ -3,4 +3,4 @@ #include -int acpi_get_boot_usec(usec_t *loader_start, usec_t *loader_exit); +int acpi_get_boot_usec(usec_t *ret_loader_start, usec_t *ret_loader_exit);