Lines Matching refs:props

769 	struct atmel_hlcdc_plane_properties *props = plane->properties;  in atmel_hlcdc_plane_atomic_set_property()  local
773 if (property == props->alpha) in atmel_hlcdc_plane_atomic_set_property()
787 struct atmel_hlcdc_plane_properties *props = plane->properties; in atmel_hlcdc_plane_atomic_get_property() local
791 if (property == props->alpha) in atmel_hlcdc_plane_atomic_get_property()
801 struct atmel_hlcdc_plane_properties *props) in atmel_hlcdc_plane_init_properties() argument
808 props->alpha, 255); in atmel_hlcdc_plane_init_properties()
918 struct atmel_hlcdc_plane_properties *props) in atmel_hlcdc_plane_create() argument
950 atmel_hlcdc_plane_init_properties(plane, desc, props); in atmel_hlcdc_plane_create()
958 struct atmel_hlcdc_plane_properties *props; in atmel_hlcdc_plane_create_properties() local
960 props = devm_kzalloc(dev->dev, sizeof(*props), GFP_KERNEL); in atmel_hlcdc_plane_create_properties()
961 if (!props) in atmel_hlcdc_plane_create_properties()
964 props->alpha = drm_property_create_range(dev, 0, "alpha", 0, 255); in atmel_hlcdc_plane_create_properties()
965 if (!props->alpha) in atmel_hlcdc_plane_create_properties()
977 return props; in atmel_hlcdc_plane_create_properties()
984 struct atmel_hlcdc_plane_properties *props; in atmel_hlcdc_create_planes() local
1008 props = atmel_hlcdc_plane_create_properties(dev); in atmel_hlcdc_create_planes()
1009 if (IS_ERR(props)) in atmel_hlcdc_create_planes()
1010 return ERR_CAST(props); in atmel_hlcdc_create_planes()
1019 plane = atmel_hlcdc_plane_create(dev, &descs[i], props); in atmel_hlcdc_create_planes()
1023 plane->properties = props; in atmel_hlcdc_create_planes()