Lines Matching refs:prop_val
617 union extcon_property_value *prop_val) in extcon_get_property() argument
623 *prop_val = (union extcon_property_value){0}; in extcon_get_property()
660 *prop_val = cable->usb_propval[prop - EXTCON_PROP_USB_MIN]; in extcon_get_property()
663 *prop_val = cable->chg_propval[prop - EXTCON_PROP_CHG_MIN]; in extcon_get_property()
666 *prop_val = cable->jack_propval[prop - EXTCON_PROP_JACK_MIN]; in extcon_get_property()
669 *prop_val = cable->disp_propval[prop - EXTCON_PROP_DISP_MIN]; in extcon_get_property()
696 union extcon_property_value prop_val) in extcon_set_property() argument
727 cable->usb_propval[prop - EXTCON_PROP_USB_MIN] = prop_val; in extcon_set_property()
730 cable->chg_propval[prop - EXTCON_PROP_CHG_MIN] = prop_val; in extcon_set_property()
733 cable->jack_propval[prop - EXTCON_PROP_JACK_MIN] = prop_val; in extcon_set_property()
736 cable->disp_propval[prop - EXTCON_PROP_DISP_MIN] = prop_val; in extcon_set_property()
761 union extcon_property_value prop_val) in extcon_set_property_sync() argument
765 ret = extcon_set_property(edev, id, prop, prop_val); in extcon_set_property_sync()