Lines Matching refs:props
84 int brightness = backlight->props.brightness; in bd6107_backlight_update_status()
86 if (backlight->props.power != FB_BLANK_UNBLANK || in bd6107_backlight_update_status()
87 backlight->props.fb_blank != FB_BLANK_UNBLANK || in bd6107_backlight_update_status()
88 backlight->props.state & (BL_CORE_SUSPENDED | BL_CORE_FBBLANK)) in bd6107_backlight_update_status()
124 struct backlight_properties props; in bd6107_probe() local
154 memset(&props, 0, sizeof(props)); in bd6107_probe()
155 props.type = BACKLIGHT_RAW; in bd6107_probe()
156 props.max_brightness = 128; in bd6107_probe()
157 props.brightness = clamp_t(unsigned int, pdata->def_value, 0, in bd6107_probe()
158 props.max_brightness); in bd6107_probe()
163 &bd6107_backlight_ops, &props); in bd6107_probe()
179 backlight->props.brightness = 0; in bd6107_remove()