Lines Matching refs:props
52 int brightness = backlight->props.brightness; in lv5207lp_backlight_update_status()
54 if (backlight->props.power != FB_BLANK_UNBLANK || in lv5207lp_backlight_update_status()
55 backlight->props.fb_blank != FB_BLANK_UNBLANK || in lv5207lp_backlight_update_status()
56 backlight->props.state & (BL_CORE_SUSPENDED | BL_CORE_FBBLANK)) in lv5207lp_backlight_update_status()
92 struct backlight_properties props; in lv5207lp_probe() local
114 memset(&props, 0, sizeof(props)); in lv5207lp_probe()
115 props.type = BACKLIGHT_RAW; in lv5207lp_probe()
116 props.max_brightness = min_t(unsigned int, pdata->max_value, in lv5207lp_probe()
118 props.brightness = clamp_t(unsigned int, pdata->def_value, 0, in lv5207lp_probe()
119 props.max_brightness); in lv5207lp_probe()
123 lv, &lv5207lp_backlight_ops, &props); in lv5207lp_probe()
139 backlight->props.brightness = 0; in lv5207lp_remove()