Lines Matching refs:props

685 		panel->backlight.device->props.brightness =  in intel_panel_set_backlight_acpi()
688 panel->backlight.device->props.max_brightness); in intel_panel_set_backlight_acpi()
767 panel->backlight.device->props.power = FB_BLANK_POWERDOWN; in intel_panel_disable_backlight()
977 panel->backlight.device->props.brightness = in intel_panel_enable_backlight()
980 panel->backlight.device->props.max_brightness); in intel_panel_enable_backlight()
986 panel->backlight.device->props.power = FB_BLANK_UNBLANK; in intel_panel_enable_backlight()
1000 bd->props.brightness, bd->props.max_brightness); in intel_backlight_device_update_status()
1001 intel_panel_set_backlight(connector, bd->props.brightness, in intel_backlight_device_update_status()
1002 bd->props.max_brightness); in intel_backlight_device_update_status()
1012 bool enable = bd->props.power == FB_BLANK_UNBLANK && in intel_backlight_device_update_status()
1013 bd->props.brightness != 0; in intel_backlight_device_update_status()
1017 bd->props.power = FB_BLANK_POWERDOWN; in intel_backlight_device_update_status()
1036 ret = scale_hw_to_user(connector, hw_level, bd->props.max_brightness); in intel_backlight_device_get_brightness()
1052 struct backlight_properties props; in intel_backlight_device_register() local
1062 memset(&props, 0, sizeof(props)); in intel_backlight_device_register()
1063 props.type = BACKLIGHT_RAW; in intel_backlight_device_register()
1069 props.max_brightness = panel->backlight.max; in intel_backlight_device_register()
1070 props.brightness = scale_hw_to_user(connector, in intel_backlight_device_register()
1072 props.max_brightness); in intel_backlight_device_register()
1075 props.power = FB_BLANK_UNBLANK; in intel_backlight_device_register()
1077 props.power = FB_BLANK_POWERDOWN; in intel_backlight_device_register()
1087 &intel_backlight_device_ops, &props); in intel_backlight_device_register()