[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <ZGJ7POc8Qm9pE_WZ@surfacebook>
Date: Mon, 15 May 2023 21:34:36 +0300
From: andy.shevchenko@...il.com
To: Andrew Davis <afd@...com>
Cc: Peter Tyser <ptyser@...-inc.com>,
Andy Shevchenko <andy@...nel.org>,
Linus Walleij <linus.walleij@...aro.org>,
Bartosz Golaszewski <brgl@...ev.pl>,
linux-gpio@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: Re: [PATCH v3] gpio: pisosr: Use devm_gpiochip_add_data() to
simplify remove path
Mon, May 15, 2023 at 12:43:21PM -0500, Andrew Davis kirjoitti:
> Use devm version of gpiochip add function to handle removal for us.
>
> While here update copyright and module author.
...
> +static void pisosr_mutex_destroy(void *data)
> +{
> + struct mutex *lock = data;
> +
> + mutex_destroy(lock);
> +}
No need to cast void * explicitly.
static void pisosr_mutex_destroy(void *lock)
{
mutex_destroy(lock);
}
--
With Best Regards,
Andy Shevchenko
Powered by blists - more mailing lists