slimbus: fix slim_tid_txn()
fix below issue reported by coccicheck ./drivers/slimbus/slimbus.h:440:3-46: duplicated argument to && or || Looks like this was a typo, SLIM_MSG_MC_REQUEST_CHANGE_VALUE is command which requires transaction ID, so fix it, this also fix the warning. Reported-by: Hariprasad Kelam <hariprasad.kelam@gmail.com> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Link: https://lore.kernel.org/r/20190818093902.29993-3-srinivas.kandagatla@linaro.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
04eb94d526
commit
fcaf3d9339
@ -439,7 +439,7 @@ static inline bool slim_tid_txn(u8 mt, u8 mc)
|
|||||||
(mc == SLIM_MSG_MC_REQUEST_INFORMATION ||
|
(mc == SLIM_MSG_MC_REQUEST_INFORMATION ||
|
||||||
mc == SLIM_MSG_MC_REQUEST_CLEAR_INFORMATION ||
|
mc == SLIM_MSG_MC_REQUEST_CLEAR_INFORMATION ||
|
||||||
mc == SLIM_MSG_MC_REQUEST_VALUE ||
|
mc == SLIM_MSG_MC_REQUEST_VALUE ||
|
||||||
mc == SLIM_MSG_MC_REQUEST_CLEAR_INFORMATION));
|
mc == SLIM_MSG_MC_REQUEST_CHANGE_VALUE));
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline bool slim_ec_txn(u8 mt, u8 mc)
|
static inline bool slim_ec_txn(u8 mt, u8 mc)
|
||||||
|
Loading…
Reference in New Issue
Block a user