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

Commit 7a605fa4 authored by qctecmdr's avatar qctecmdr Committed by Gerrit - the friendly Code Review server
Browse files

Merge "asoc: codecs: Add nullptr check"

parents f4a84ebe 2f80bdcd
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>
@@ -260,12 +261,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;
}