From: Jens Axboe Date: Mon, 30 Jan 2017 03:04:49 +0000 (-0700) Subject: nvme: fix compilation of scsi component X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=f605208e01f5b8ee7b44f3624ec8807cfe85ea7e;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git nvme: fix compilation of scsi component Since we moved the cdb parts and define out of the block proper, we need to include scsi/scsi_request.h for the nvme scsi layer. Fixes: 82ed4db499b8 ("block: split scsi_request out of struct request") Reported-by: Stephen Rothwell Signed-off-by: Jens Axboe --- diff --git a/drivers/nvme/host/scsi.c b/drivers/nvme/host/scsi.c index a5c09e703bd8..0f0fcea9a2c1 100644 --- a/drivers/nvme/host/scsi.c +++ b/drivers/nvme/host/scsi.c @@ -43,6 +43,7 @@ #include #include #include +#include #include "nvme.h"