1
0
Fork 0

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>
hifive-unleashed-5.1
Christoph Hellwig 2016-04-16 14:57:58 -04:00 committed by Jens Axboe
parent 49bdedb362
commit 76e3914ae5
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ struct nvme_ctrl {
char serial[20];
char model[40];
char firmware_rev[8];
int cntlid;
u16 cntlid;
u32 ctrl_config;