Lines Matching full:props
65 struct backlight_properties props; member
74 …ruct device *dev, void *data, const struct backlight_ops *ops, struct backlight_properties *props);
76 #define backlight_device_register(name, dev, data, ops, props) \ argument
77 linux_backlight_device_register(name, dev, data, ops, props)
89 bd->props.brightness = bd->ops->get_brightness(bd); in backlight_force_update()
96 return (bd->props.brightness); in backlight_get_brightness()
103 if (brightness > bd->props.max_brightness) in backlight_device_set_brightness()
105 bd->props.brightness = brightness; in backlight_device_set_brightness()
114 bd->props.power = 0/* FB_BLANK_UNBLANK */; in backlight_enable()
123 bd->props.power = 4/* FB_BLANK_POWERDOWN */; in backlight_disable()
131 return (bd->props.power != 0/* FB_BLANK_UNBLANK */); in backlight_is_blank()