Lines Matching refs:props
261 int brightness = bl->props.brightness; in lp855x_bl_update_status()
263 if (bl->props.state & (BL_CORE_SUSPENDED | BL_CORE_FBBLANK)) in lp855x_bl_update_status()
267 lp855x_pwm_ctrl(lp, brightness, bl->props.max_brightness); in lp855x_bl_update_status()
282 struct backlight_properties props; in lp855x_backlight_register() local
286 memset(&props, 0, sizeof(props)); in lp855x_backlight_register()
287 props.type = BACKLIGHT_PLATFORM; in lp855x_backlight_register()
288 props.max_brightness = MAX_BRIGHTNESS; in lp855x_backlight_register()
290 if (pdata->initial_brightness > props.max_brightness) in lp855x_backlight_register()
291 pdata->initial_brightness = props.max_brightness; in lp855x_backlight_register()
293 props.brightness = pdata->initial_brightness; in lp855x_backlight_register()
296 &lp855x_bl_ops, &props); in lp855x_backlight_register()
467 lp->bl->props.brightness = 0; in lp855x_remove()