Lines Matching refs:props
49 int brightness = backlight->props.brightness; in lv5207lp_backlight_update_status()
51 if (backlight->props.power != FB_BLANK_UNBLANK || in lv5207lp_backlight_update_status()
52 backlight->props.fb_blank != FB_BLANK_UNBLANK || in lv5207lp_backlight_update_status()
53 backlight->props.state & (BL_CORE_SUSPENDED | BL_CORE_FBBLANK)) in lv5207lp_backlight_update_status()
89 struct backlight_properties props; in lv5207lp_probe() local
111 memset(&props, 0, sizeof(props)); in lv5207lp_probe()
112 props.type = BACKLIGHT_RAW; in lv5207lp_probe()
113 props.max_brightness = min_t(unsigned int, pdata->max_value, in lv5207lp_probe()
115 props.brightness = clamp_t(unsigned int, pdata->def_value, 0, in lv5207lp_probe()
116 props.max_brightness); in lv5207lp_probe()
120 lv, &lv5207lp_backlight_ops, &props); in lv5207lp_probe()
136 backlight->props.brightness = 0; in lv5207lp_remove()