From: Gustavo A. R. Silva Date: Mon, 30 Apr 2018 13:23:06 +0000 (-0500) Subject: typec: tcpm: Fix incorrect 'and' operator X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=252427037a360dcf4ee4b38e3b11c85e884b6646;p=linux.git typec: tcpm: Fix incorrect 'and' operator Currently, logical and is being used instead of *bitwise* and. Fix this by using a proper bitwise and operator. Addresses-Coverity-ID: 1468455 ("Logical vs. bitwise operator") Fixes: 64f7c494a3c0 ("typec: tcpm: Add support for sink PPS related messages") Signed-off-by: Gustavo A. R. Silva Acked-by: Adam Thomson Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/typec/tcpm.c b/drivers/usb/typec/tcpm.c index 1ee259bc14a51..7ee417a525c31 100644 --- a/drivers/usb/typec/tcpm.c +++ b/drivers/usb/typec/tcpm.c @@ -1772,7 +1772,7 @@ static void tcpm_pd_ext_msg_request(struct tcpm_port *port, enum pd_ext_msg_type type = pd_header_type_le(msg->header); unsigned int data_size = pd_ext_header_data_size_le(msg->ext_msg.header); - if (!(msg->ext_msg.header && PD_EXT_HDR_CHUNKED)) { + if (!(msg->ext_msg.header & PD_EXT_HDR_CHUNKED)) { tcpm_log(port, "Unchunked extended messages unsupported"); return; }