diff options
author | Colin Ian King <colin.king@canonical.com> | 2018-06-11 04:38:38 -0400 |
---|---|---|
committer | Andy Gross <andy.gross@linaro.org> | 2018-09-13 17:11:32 -0400 |
commit | 35aac0ba88d55da6ef879572e931f57098aa4d23 (patch) | |
tree | 04e2a03838a7dd65b692db90ed551dfa752eb3a5 | |
parent | 867d4aa7013fdee8b962cde1711f96c8dd86d926 (diff) |
soc: qcom: apr: fix spelling mistake: "paket" -> "packet"
Trivial fix to spelling mistake in dev_err message text
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Andy Gross <andy.gross@linaro.org>
-rw-r--r-- | drivers/soc/qcom/apr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/soc/qcom/apr.c b/drivers/soc/qcom/apr.c index 57af8a537332..7f8c4c096ad2 100644 --- a/drivers/soc/qcom/apr.c +++ b/drivers/soc/qcom/apr.c | |||
@@ -87,7 +87,7 @@ static int apr_callback(struct rpmsg_device *rpdev, void *buf, | |||
87 | } | 87 | } |
88 | 88 | ||
89 | if (hdr->pkt_size < APR_HDR_SIZE || hdr->pkt_size != len) { | 89 | if (hdr->pkt_size < APR_HDR_SIZE || hdr->pkt_size != len) { |
90 | dev_err(apr->dev, "APR: Wrong paket size\n"); | 90 | dev_err(apr->dev, "APR: Wrong packet size\n"); |
91 | return -EINVAL; | 91 | return -EINVAL; |
92 | } | 92 | } |
93 | 93 | ||