forked from Minki/linux
soc: qcom: apr: fix invalid msg_type check
Removed invalid msg_type check. This also fixes below static checker warning: apr.c:95:35: warning: comparison is always true due to limited range of data type [-Wtype-limits] warn: always true condition '(msg_type != 69864) => (0-u16max != 69864)' Reported-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
81dd1c5dcf
commit
e744619d05
@ -92,7 +92,7 @@ static int apr_callback(struct rpmsg_device *rpdev, void *buf,
|
||||
}
|
||||
|
||||
msg_type = APR_HDR_FIELD_MT(hdr->hdr_field);
|
||||
if (msg_type >= APR_MSG_TYPE_MAX && msg_type != APR_BASIC_RSP_RESULT) {
|
||||
if (msg_type >= APR_MSG_TYPE_MAX) {
|
||||
dev_err(apr->dev, "APR: Wrong message type: %d\n", msg_type);
|
||||
return -EINVAL;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user