Lines Matching full:brightness
69 /** enum backlight_scale - the type of scale used for brightness values
71 * The type of scale used for brightness values.
82 * The linear scale will increase brightness the same for each step.
89 * This is often used when the brightness values tries to adjust to
121 * to check if the display is blanked and set brightness accordingly.
131 * @get_brightness: Return the current backlight brightness.
135 * brightness property value is used.
139 * A brightness value which is 0 or a positive number.
166 * @brightness: The current brightness requested by the user.
169 * when the brightness is set via the sysfs attribute:
170 * /sys/class/backlight/<backlight>/brightness.
173 * to devm_backlight_device_register() to set a default brightness
176 int brightness; member
179 * @max_brightness: The maximum brightness value.
237 * @scale: The type of the brightness scale.
374 * backlight_get_brightness - Returns the current brightness value
377 * Returns the current brightness value, taking in consideration the current
378 * state. If backlight_is_blank() returns true then return 0 as brightness
379 * otherwise return the current brightness property value.
382 * operation to get the brightness value.
389 return bd->props.brightness; in backlight_get_brightness()
409 unsigned long brightness);