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

Commit 1b4e1f46 authored by Sean Tranchetti's avatar Sean Tranchetti Committed by Gerrit - the friendly Code Review server
Browse files

drivers: soc: qcom: Update TCM field names



Updating kona defconfig revealed a compiliation issue due to
typos in the field names of the TC message struct used for
receiveing netlink messages.

Change-Id: I9d2ab3532cab85b7e4952a487bb0e51ed771584f
CRs-Fixed: 2333588
Signed-off-by: default avatarSean Tranchetti <stranche@codeaurora.org>
parent 6c783774
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -453,12 +453,12 @@ void qmi_rmnet_change_link(struct net_device *dev, void *port, void *tcm_pt)
		qmi_rmnet_delete_client(port, qmi, tcm);
		break;
	case NLMSG_SCALE_FACTOR:
		if (!tcm->tcm_index)
		if (!tcm->tcm_ifindex)
			return;
		qmi_rmnet_scale_factor = tcm->tcm_index;
		break
		qmi_rmnet_scale_factor = tcm->tcm_ifindex;
		break;
	case NLMSG_WQ_FREQUENCY:
		rmnet_wq_frequency = tcm->tcm_index;
		rmnet_wq_frequency = tcm->tcm_ifindex;
		break;
	default:
		pr_debug("%s(): No handler\n", __func__);