Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8a4d3181 authored by Linux Build Service Account's avatar Linux Build Service Account
Browse files

Merge 7466c3a0 on remote branch

Change-Id: I5dcb32cf88ee473e5f0c5252f4a253178fb4e876
parents 831cc7ce 7466c3a0
Loading
Loading
Loading
Loading
+8 −5
Original line number Diff line number Diff line
// SPDX-License-Identifier: GPL-2.0-only
/*
 * Copyright (c) 2016-2020, The Linux Foundation. All rights reserved.
 * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
 */

#include <linux/gpio.h>
@@ -261,12 +262,14 @@ static int lpi_gpio_set_mux(struct pinctrl_dev *pctldev, unsigned int function,

	pad = pctldev->desc->pins[pin].drv_data;

	if (pad != NULL) {
		pad->function = function;

		val = lpi_gpio_read(pad, LPI_GPIO_REG_VAL_CTL);
		val &= ~(LPI_GPIO_REG_FUNCTION_MASK);
		val |= pad->function << LPI_GPIO_REG_FUNCTION_SHIFT;
		lpi_gpio_write(pad, LPI_GPIO_REG_VAL_CTL, val);
	}
	return 0;
}