Re: PATCH [1/3]: Provide generic backlight support in Asus ACPI driver

From: Matthew Garrett
Date: Tue Apr 18 2006 - 12:28:41 EST


On Tue, Apr 18, 2006 at 09:11:00AM -0700, Patrick Mochel wrote:

> > +static struct backlight_device *asus_backlight_device;
> > +
>
> Why is this dynamically allocated? If there is only one per driver, then the
> register() function could take that as a parameter -- instead of passing various
> variable to initialize it with -- and return an error.

Fair enough.

> > -static int read_brightness(void)
> > +static int read_brightness(struct backlight_device *bd)
>
> It seems that you're always passing NULL to this. And, if you're not passing NULL,
> aren't you always referencing the single global instance above?

Yeah, that's a holdover from an earlier version of the backlight
interface. I'll fix that up.

> > -static void set_brightness(int value)
> > +static int set_brightness(struct backlight_device *bd, int value)
> > {
> > acpi_status status = 0;
> >
> > + value = (0 < value) ? ((15 < value) ? 15 : value) : 0;
> > + /* 0 <= value <= 15 */
>
> Is there something wrong with:
>
> if (value < 0)
> value = 0;
> else if (value > 15)
> value = 15;

That's just cut and paste from the existing driver code - your version
makes more sense.

> > - value = (0 < value) ? ((15 < value) ? 15 : value) : 0;
> > - /* 0 <= value <= 15 */
> > - set_brightness(value);
> > + set_brightness(NULL,value);
>
> There should be a space between parameters.

Ok.

> > + asus_backlight_device = backlight_device_register ("asus_bl", NULL,
> > + &asusbl_data);
> > +
> > + if (IS_ERR (asus_backlight_device)) {
> > + printk("Unable to register backlight\n");
>
> Could you print the name of the driver?

Sure.

> > + acpi_bus_unregister_driver(&asus_hotk_driver);
> > + remove_proc_entry(PROC_ASUS, acpi_root_dir);
>
> If the backlight fails to register, does it mean that these must also fail?

Hm. Good question. The rest of the driver ought to work even without
backlight registration, but that sounds like an edge case.

--
Matthew Garrett | mjg59@xxxxxxxxxxxxx
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/