thunderbolt: Fix reset response_type
authorDan Carpenter <dan.carpenter@oracle.com>
Wed, 16 Aug 2017 08:54:17 +0000 (11:54 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 28 Aug 2017 14:21:32 +0000 (16:21 +0200)
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 <colin.king@canonical.com>
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Acked-by: Mika Westerberg <mika.westerberg@linux.intel.com>
Cc: stable <stable@vger.kernel.org> # 4.13
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/thunderbolt/ctl.c

index 69c0232a22f833d0d2d23e4416deff15c8a8e8e3..fb40dd0588b9a7743e99e9af764772308d8d56c8 100644 (file)
@@ -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);