Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1634408
| From | Michał Kępień <kernel@kempniu.pl> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | Re: [PATCH 01/10] platform/x86: fujitsu-laptop: introduce fext_*() helper functions |
| Date | 2017-05-02 15:30 +0200 |
| Message-ID | <tCG2m-7dm-5@gated-at.bofh.it> (permalink) |
| References | <tzMnD-7Bg-3@gated-at.bofh.it> <tzMnD-7Bg-1@gated-at.bofh.it> <tCjp8-1c4-19@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
> > @@ -272,9 +292,9 @@ static int bl_get_brightness(struct backlight_device *b)
> > static int bl_update_status(struct backlight_device *b)
> > {
> > if (b->props.power == FB_BLANK_POWERDOWN)
> > - call_fext_func(FUNC_BACKLIGHT, 0x1, 0x4, 0x3);
> > + fext_backlight(0x1, 0x4, 0x3);
> > else
> > - call_fext_func(FUNC_BACKLIGHT, 0x1, 0x4, 0x0);
> > + fext_backlight(0x1, 0x4, 0x0);
> >
> > return set_lcd_level(b->props.brightness);
> > }
> > @@ -610,22 +630,22 @@ static int logolamp_set(struct led_classdev *cdev,
> > if (brightness < LED_FULL)
> > always = FUNC_LED_OFF;
> >
> > - ret = call_fext_func(FUNC_LEDS, 0x1, LOGOLAMP_POWERON, poweron);
> > + ret = fext_leds(0x1, LOGOLAMP_POWERON, poweron);
> > if (ret < 0)
> > return ret;
> >
> > - return call_fext_func(FUNC_LEDS, 0x1, LOGOLAMP_ALWAYS, always);
> > + return fext_leds(0x1, LOGOLAMP_ALWAYS, always);
> > }
>
> I've only just noticed this. For the led calls we have symbolic identifiers
> defined for the "features" parameter, but in the backlight case we are still
> using arbitrary numeric constants. Although not necessary for this patch
> set, we should consider adding feature identifiers for the other fext_*() calls.
> Similarly for the "op" parameter where it makes sense to do so.
Good point, I will keep that in mind for the next patch series.
--
Best regards,
Michał Kępień
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
Re: [PATCH 01/10] platform/x86: fujitsu-laptop: introduce fext_*() helper functions Jonathan Woithe <jwoithe@just42.net> - 2017-05-01 15:20 +0200 Re: [PATCH 01/10] platform/x86: fujitsu-laptop: introduce fext_*() helper functions Michał Kępień <kernel@kempniu.pl> - 2017-05-02 15:30 +0200
csiph-web