Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1612281 > unrolled thread
| Started by | Darren Hart <dvhart@infradead.org> |
|---|---|
| First post | 2017-03-29 22:00 +0200 |
| Last post | 2017-03-30 06:10 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH 1/8] platform/x86: fujitsu-laptop: move backlight input device setup to a separate function Darren Hart <dvhart@infradead.org> - 2017-03-29 22:00 +0200
Re: [PATCH 1/8] platform/x86: fujitsu-laptop: move backlight input device setup to a separate function Jonathan Woithe <jwoithe@just42.net> - 2017-03-30 06:10 +0200
| From | Darren Hart <dvhart@infradead.org> |
|---|---|
| Date | 2017-03-29 22:00 +0200 |
| Subject | Re: [PATCH 1/8] platform/x86: fujitsu-laptop: move backlight input device setup to a separate function |
| Message-ID | <tqrV7-3aL-1@gated-at.bofh.it> |
On Mon, Mar 20, 2017 at 10:32:17AM +0100, Michał Kępień wrote:
> Simplify error handling in acpi_fujitsu_bl_add() by moving code
> responsible for setting up the input device to a separate function.
Modularization is nice, two minor nits/questions below:
>
> Signed-off-by: Michał Kępień <kernel@kempniu.pl>
> ---
> drivers/platform/x86/fujitsu-laptop.c | 64 +++++++++++++++++++++--------------
> 1 file changed, 38 insertions(+), 26 deletions(-)
>
> diff --git a/drivers/platform/x86/fujitsu-laptop.c b/drivers/platform/x86/fujitsu-laptop.c
> index f3ccef3d5a1e..2b0dcf989e2a 100644
> --- a/drivers/platform/x86/fujitsu-laptop.c
> +++ b/drivers/platform/x86/fujitsu-laptop.c
> @@ -590,6 +590,41 @@ static const struct dmi_system_id fujitsu_dmi_table[] __initconst = {
>
> /* ACPI device for LCD brightness control */
>
> +static int acpi_fujitsu_bl_input_setup(struct acpi_device *device)
> +{
> + struct fujitsu_bl *fujitsu_bl = acpi_driver_data(device);
> + struct input_dev *input;
> + int error;
> +
> + fujitsu_bl->input = input = input_allocate_device();
> + if (!input)
> + return -ENOMEM;
> +
> + snprintf(fujitsu_bl->phys, sizeof(fujitsu_bl->phys),
> + "%s/video/input0", acpi_device_hid(device));
> +
> + input->name = acpi_device_name(device);
> + input->phys = fujitsu_bl->phys;
> + input->id.bustype = BUS_HOST;
> + input->id.product = 0x06;
> + input->dev.parent = &device->dev;
> + input->evbit[0] = BIT(EV_KEY);
> + set_bit(KEY_BRIGHTNESSUP, input->keybit);
> + set_bit(KEY_BRIGHTNESSDOWN, input->keybit);
> + set_bit(KEY_UNKNOWN, input->keybit);
> +
> + error = input_register_device(input);
> + if (error)
> + goto err_free_input_dev;
> +
> + return 0;
> +
> +err_free_input_dev:
> + input_free_device(input);
This leaves fujitsu_bl->input pointing at freed memory. Can this be assigned
only after successful registration? If not, it would be cleaner to NULL it on
failure.
> +
> + return error;
This return path could be cleaned up a bit:
error = input_register_device(input);
if (error)
input_free_device(input);
return error;
But, this driver uses this "error/return 0" pattern pretty consistently, whereas
most of the kernel uses ret instead of error, and will return ret on success and
failure, relying on it being 0 in the successful case. Over the whole driver,
we'd save several lines with the conversion and be more consistent with the rest
of the kernel. But, local consistency is important too. Jonathan, do you have a
preference for this driver?
--
Darren Hart
VMware Open Source Technology Center
[toc] | [next] | [standalone]
| From | Jonathan Woithe <jwoithe@just42.net> |
|---|---|
| Date | 2017-03-30 06:10 +0200 |
| Message-ID | <tqzzj-Cl-1@gated-at.bofh.it> |
| In reply to | #1612281 |
On Wed, Mar 29, 2017 at 12:54:15PM -0700, Darren Hart wrote: > On Mon, Mar 20, 2017 at 10:32:17AM +0100, Micha?? K??pie?? wrote: > > + > > + return error; > > This return path could be cleaned up a bit: > > error = input_register_device(input); > if (error) > input_free_device(input); > > return error; > > But, this driver uses this "error/return 0" pattern pretty consistently, whereas > most of the kernel uses ret instead of error, and will return ret on success and > failure, relying on it being 0 in the successful case. Over the whole driver, > we'd save several lines with the conversion and be more consistent with the rest > of the kernel. But, local consistency is important too. Jonathan, do you have a > preference for this driver? I have no strong preferences, except to say that clarity is important. As I eluded to a few minutes ago, I agree that there's scope to address error handling and there is a case to be made for bringing it into line with the rest of the kernel. I think this can be addressed in a separate patch series though. The present series under consideration doesn't make the situation any worse (it actually improves it in some places) and introduces worthwhile changes. As such I don't see that we gain anything by delaying it in order to address what is, at the end of the day, a separate concern. Regards jonathan
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web