lkml.org 
[lkml]   [2022]   [Aug]   [23]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
Date
SubjectRe: [PATCH] tools/power/acpi/os_specific/service_layers/osunixxf.c:remove unnecessary (void*) conversions
On Mon, Aug 22, 2022 at 8:24 AM Dong Chuanjian <chuanjian@nfschina.com> wrote:
>
> remove unnecessary void* type casting
>
> Signed-off-by: Dong Chuanjian <chuanjian@nfschina.com>

This is ACPICA code, so please submit changes against it to the
upstream ACPICA project on GitHub. Thanks!

> diff --git a/tools/power/acpi/os_specific/service_layers/osunixxf.c b/tools/power/acpi/os_specific/service_layers/osunixxf.c
> index b3651a04d68c..a7e65fb95caf 100644
> --- a/tools/power/acpi/os_specific/service_layers/osunixxf.c
> +++ b/tools/power/acpi/os_specific/service_layers/osunixxf.c
> @@ -679,7 +679,7 @@ acpi_os_create_semaphore(u32 max_units,
>
> acpi_status acpi_os_delete_semaphore(acpi_handle handle)
> {
> - sem_t *sem = (sem_t *) handle;
> + sem_t *sem = handle;
>
> if (!sem) {
> return (AE_BAD_PARAMETER);
> @@ -715,7 +715,7 @@ acpi_status
> acpi_os_wait_semaphore(acpi_handle handle, u32 units, u16 msec_timeout)
> {
> acpi_status status = AE_OK;
> - sem_t *sem = (sem_t *) handle;
> + sem_t *sem = handle;
> int ret_val;
> #ifndef ACPI_USE_ALTERNATE_TIMEOUT
> struct timespec time;
> @@ -832,7 +832,7 @@ acpi_os_wait_semaphore(acpi_handle handle, u32 units, u16 msec_timeout)
>
> acpi_status acpi_os_signal_semaphore(acpi_handle handle, u32 units)
> {
> - sem_t *sem = (sem_t *) handle;
> + sem_t *sem = handle;
>
> if (!sem) {
> return (AE_BAD_PARAMETER);
> --
> 2.18.2
>

\
 
 \ /
  Last update: 2022-08-23 20:50    [W:0.156 / U:0.152 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site