Lines Matching refs:prop_val
632 union extcon_property_value *prop_val) in extcon_get_property() argument
638 *prop_val = (union extcon_property_value){0}; in extcon_get_property()
675 *prop_val = cable->usb_propval[prop - EXTCON_PROP_USB_MIN]; in extcon_get_property()
678 *prop_val = cable->chg_propval[prop - EXTCON_PROP_CHG_MIN]; in extcon_get_property()
681 *prop_val = cable->jack_propval[prop - EXTCON_PROP_JACK_MIN]; in extcon_get_property()
684 *prop_val = cable->disp_propval[prop - EXTCON_PROP_DISP_MIN]; in extcon_get_property()
711 union extcon_property_value prop_val) in extcon_set_property() argument
742 cable->usb_propval[prop - EXTCON_PROP_USB_MIN] = prop_val; in extcon_set_property()
745 cable->chg_propval[prop - EXTCON_PROP_CHG_MIN] = prop_val; in extcon_set_property()
748 cable->jack_propval[prop - EXTCON_PROP_JACK_MIN] = prop_val; in extcon_set_property()
751 cable->disp_propval[prop - EXTCON_PROP_DISP_MIN] = prop_val; in extcon_set_property()
776 union extcon_property_value prop_val) in extcon_set_property_sync() argument
780 ret = extcon_set_property(edev, id, prop, prop_val); in extcon_set_property_sync()