Lines Matching refs:props

771 	struct atmel_hlcdc_plane_properties *props = plane->properties;  in atmel_hlcdc_plane_atomic_set_property()  local
775 if (property == props->alpha) in atmel_hlcdc_plane_atomic_set_property()
789 struct atmel_hlcdc_plane_properties *props = plane->properties; in atmel_hlcdc_plane_atomic_get_property() local
793 if (property == props->alpha) in atmel_hlcdc_plane_atomic_get_property()
803 struct atmel_hlcdc_plane_properties *props) in atmel_hlcdc_plane_init_properties() argument
810 props->alpha, 255); in atmel_hlcdc_plane_init_properties()
920 struct atmel_hlcdc_plane_properties *props) in atmel_hlcdc_plane_create() argument
952 atmel_hlcdc_plane_init_properties(plane, desc, props); in atmel_hlcdc_plane_create()
960 struct atmel_hlcdc_plane_properties *props; in atmel_hlcdc_plane_create_properties() local
962 props = devm_kzalloc(dev->dev, sizeof(*props), GFP_KERNEL); in atmel_hlcdc_plane_create_properties()
963 if (!props) in atmel_hlcdc_plane_create_properties()
966 props->alpha = drm_property_create_range(dev, 0, "alpha", 0, 255); in atmel_hlcdc_plane_create_properties()
967 if (!props->alpha) in atmel_hlcdc_plane_create_properties()
979 return props; in atmel_hlcdc_plane_create_properties()
986 struct atmel_hlcdc_plane_properties *props; in atmel_hlcdc_create_planes() local
1010 props = atmel_hlcdc_plane_create_properties(dev); in atmel_hlcdc_create_planes()
1011 if (IS_ERR(props)) in atmel_hlcdc_create_planes()
1012 return ERR_CAST(props); in atmel_hlcdc_create_planes()
1021 plane = atmel_hlcdc_plane_create(dev, &descs[i], props); in atmel_hlcdc_create_planes()
1025 plane->properties = props; in atmel_hlcdc_create_planes()