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

Commit 25955944 authored by Kyle Yan's avatar Kyle Yan Committed by Gerrit - the friendly Code Review server
Browse files

Merge "soc: qcom: glink: Fix ctx initialization with magic number" into msm-4.9

parents 60d4bdd4 37a5218b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2583,6 +2583,7 @@ void *glink_open(const struct glink_open_config *cfg)
	ctx->notify_tx_abort = cfg->notify_tx_abort;
	ctx->notify_rx_tracer_pkt = cfg->notify_rx_tracer_pkt;
	ctx->notify_remote_rx_intent = cfg->notify_remote_rx_intent;
	ctx->magic_number = GLINK_CTX_CANARY;

	if (!ctx->notify_rx_intent_req)
		ctx->notify_rx_intent_req = glink_dummy_notify_rx_intent_req;
@@ -2618,7 +2619,6 @@ void *glink_open(const struct glink_open_config *cfg)

	GLINK_INFO_CH(ctx, "%s: Created channel, sent OPEN command. ctx %p\n",
			__func__, ctx);
	ctx->magic_number = GLINK_CTX_CANARY;
	return ctx;
}
EXPORT_SYMBOL(glink_open);