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

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

Merge "rpmsg: glink: Change error logging to avoid throttling"

parents 80e82cf4 39d2f49e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -45,7 +45,7 @@ do { \
	if (ch->glink) {						     \
		ipc_log_string(ch->glink->ilc, "%s[%d:%d] %s: "x, ch->name,  \
			       ch->lcid, ch->rcid, __func__, ##__VA_ARGS__); \
		dev_err(ch->glink->dev, "[%s]: "x, __func__, ##__VA_ARGS__); \
		dev_err_ratelimited(ch->glink->dev, "[%s]: "x, __func__, ##__VA_ARGS__); \
	}								     \
} while (0)

@@ -1069,7 +1069,7 @@ static int qcom_glink_rx_data(struct qcom_glink *glink, size_t avail)
					channel->ept.priv,
					RPMSG_ADDR_ANY);

			if (ret < 0) {
			if (ret < 0 && ret != -ENODEV) {
				CH_ERR(channel,
					"callback error ret = %d\n", ret);
				ret = 0;