From: Dan Carpenter Date: Wed, 16 Aug 2017 08:54:17 +0000 (+0300) Subject: thunderbolt: Fix reset response_type X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=02729d17b1b818cc38a6b6319231a0cd86b132e4;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git thunderbolt: Fix reset response_type There is a mistake here where we accidentally use sizeof(TB_CFG_PKG_RESET) instead of just TB_CFG_PKG_RESET. The size of an int is 4 so it's the same as TB_CFG_PKG_NOTIFY_ACK. Fixes: d7f781bfdbf4 ("thunderbolt: Rework control channel to be more reliable") Reported-by: Colin King Signed-off-by: Dan Carpenter Acked-by: Mika Westerberg Cc: stable # 4.13 Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/thunderbolt/ctl.c b/drivers/thunderbolt/ctl.c index 69c0232a22f8..fb40dd0588b9 100644 --- a/drivers/thunderbolt/ctl.c +++ b/drivers/thunderbolt/ctl.c @@ -804,7 +804,7 @@ struct tb_cfg_result tb_cfg_reset(struct tb_ctl *ctl, u64 route, req->request_type = TB_CFG_PKG_RESET; req->response = &reply; req->response_size = sizeof(reply); - req->response_type = sizeof(TB_CFG_PKG_RESET); + req->response_type = TB_CFG_PKG_RESET; res = tb_cfg_request_sync(ctl, req, timeout_msec);