Lines Matching refs:props
61 struct backlight_props props; in backlight_ioctl() local
70 bcopy(data, &props, sizeof(struct backlight_props)); in backlight_ioctl()
71 error = BACKLIGHT_GET_STATUS(sc->dev, &props); in backlight_ioctl()
73 bcopy(&props, data, sizeof(struct backlight_props)); in backlight_ioctl()
74 sc->cached_brightness = props.brightness; in backlight_ioctl()
78 bcopy(data, &props, sizeof(struct backlight_props)); in backlight_ioctl()
79 if (props.brightness == sc->cached_brightness) in backlight_ioctl()
81 error = BACKLIGHT_UPDATE_STATUS(sc->dev, &props); in backlight_ioctl()
83 bcopy(&props, data, sizeof(struct backlight_props)); in backlight_ioctl()
84 sc->cached_brightness = props.brightness; in backlight_ioctl()
109 struct backlight_props props; in backlight_register() local
137 error = BACKLIGHT_GET_STATUS(sc->dev, &props); in backlight_register()
138 sc->cached_brightness = props.brightness; in backlight_register()