Lines Matching refs:get
37 * get/set operations for common cases, so that access to SOC-integrated
129 * gpiochip_get_desc - get the GPIO descriptor corresponding to the given
204 * @desc: GPIO to get the direction of
525 chip_err(gc, "%s: unable to get GPIO desc: %ld\n", __func__,
656 * get *rid* of this numberspace and use only descriptors, but
657 * it may be a pipe dream. It will not happen before we get rid
747 * we get a device node entry in sysfs under
795 * gpiochip_get_data() - get per-subdriver data for the chip
1704 * need to use gpiochip_get_data() to get their local state containers back
1737 * FIXME: get rid of this and use gc->parent->of_node
2247 chip_err(gc, "failed to get GPIO descriptor\n");
2281 * Drivers MUST set GPIO direction before making get/set calls. In
2357 * It is legal to have no .get() and .direction_input() specified if
2359 * and not support the .get() operation, that doesn't make sense.
2361 if (!gc->get && gc->direction_input) {
2363 "%s: missing get() but have direction_input()\n",
2643 * IMPORTANT!!! The hot paths -- get/set value -- assume that callers
2661 value = gc->get ? gc->get(gc, offset) : -EIO;
2672 if (gc->get) {
2676 value = gc->get(gc, i);
3286 chip_err(gc, "%s: cannot get GPIO direction\n",
3809 * This function can be used for drivers that get their configuration
4072 * This function can be used for drivers that get their configuration
4449 gc->get ? (gc->get(gc, i) ? "hi" : "lo") : "? ",