Lines Matching refs:props
87 int brightness = backlight->props.brightness; in bd6107_backlight_update_status()
89 if (backlight->props.power != FB_BLANK_UNBLANK || in bd6107_backlight_update_status()
90 backlight->props.fb_blank != FB_BLANK_UNBLANK || in bd6107_backlight_update_status()
91 backlight->props.state & (BL_CORE_SUSPENDED | BL_CORE_FBBLANK)) in bd6107_backlight_update_status()
127 struct backlight_properties props; in bd6107_probe() local
157 memset(&props, 0, sizeof(props)); in bd6107_probe()
158 props.type = BACKLIGHT_RAW; in bd6107_probe()
159 props.max_brightness = 128; in bd6107_probe()
160 props.brightness = clamp_t(unsigned int, pdata->def_value, 0, in bd6107_probe()
161 props.max_brightness); in bd6107_probe()
166 &bd6107_backlight_ops, &props); in bd6107_probe()
182 backlight->props.brightness = 0; in bd6107_remove()