Lines Matching refs:prop_val
625 union extcon_property_value *prop_val) in extcon_get_property() argument
631 *prop_val = (union extcon_property_value)(0); in extcon_get_property()
668 *prop_val = cable->usb_propval[prop - EXTCON_PROP_USB_MIN]; in extcon_get_property()
671 *prop_val = cable->chg_propval[prop - EXTCON_PROP_CHG_MIN]; in extcon_get_property()
674 *prop_val = cable->jack_propval[prop - EXTCON_PROP_JACK_MIN]; in extcon_get_property()
677 *prop_val = cable->disp_propval[prop - EXTCON_PROP_DISP_MIN]; in extcon_get_property()
704 union extcon_property_value prop_val) in extcon_set_property() argument
735 cable->usb_propval[prop - EXTCON_PROP_USB_MIN] = prop_val; in extcon_set_property()
738 cable->chg_propval[prop - EXTCON_PROP_CHG_MIN] = prop_val; in extcon_set_property()
741 cable->jack_propval[prop - EXTCON_PROP_JACK_MIN] = prop_val; in extcon_set_property()
744 cable->disp_propval[prop - EXTCON_PROP_DISP_MIN] = prop_val; in extcon_set_property()
769 union extcon_property_value prop_val) in extcon_set_property_sync() argument
773 ret = extcon_set_property(edev, id, prop, prop_val); in extcon_set_property_sync()