Lines Matching refs:lpm
43 * state by setting the GPIO lpm pin high/low.
119 * @lpm: LPM GPIO descriptor
122 struct gpio_desc *lpm;
134 gpiod_set_value(mcp->lpm, 0);
138 gpiod_set_value(mcp->lpm, 1);
458 mcp->lpm = devm_gpiod_get(dev, "lpm", GPIOD_OUT_LOW);
459 if (IS_ERR(mcp->lpm)) {
460 dev_err(dev, "failed to get lpm pin: %ld\n", PTR_ERR(mcp->lpm));
461 return PTR_ERR(mcp->lpm);