diff options
author | Christoph Hellwig <hch@lst.de> | 2016-04-16 14:57:58 -0400 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2016-04-26 08:31:22 -0600 |
commit | 76e3914ae51714b0535c38d9472d89124e0b6b96 (patch) | |
tree | daf613373b0104990d92c84c28e8b6777eb600d2 /drivers/nvme | |
parent | 49bdedb36271fe6259dd251bb63c5879fa7834e1 (diff) |
nvme: fix cntlid type
Controller IDs in NVMe are unsigned 16-bit types. In the Fabrics driver we
actually pass ctrl->id by reference, so we need it to have the correct type.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'drivers/nvme')
-rw-r--r-- | drivers/nvme/host/nvme.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nvme/host/nvme.h b/drivers/nvme/host/nvme.h index 8e8fae8722f8..9b96e7586194 100644 --- a/drivers/nvme/host/nvme.h +++ b/drivers/nvme/host/nvme.h @@ -84,7 +84,7 @@ struct nvme_ctrl { char serial[20]; char model[40]; char firmware_rev[8]; - int cntlid; + u16 cntlid; u32 ctrl_config; |