diff options
| author | Gollu Appalanaidu | 2021-05-21 08:08:42 +0200 |
|---|---|---|
| committer | Klaus Jensen | 2021-06-29 07:16:25 +0200 |
| commit | f42be416cd0d50bcb2987031fbab09ee257a5058 (patch) | |
| tree | 12e53ad20f73061b94a330d82f2491ed934801b1 | |
| parent | Merge remote-tracking branch 'remotes/vsementsov/tags/pull-jobs-2021-06-25' i... (diff) | |
| download | qemu-f42be416cd0d50bcb2987031fbab09ee257a5058.tar.gz qemu-f42be416cd0d50bcb2987031fbab09ee257a5058.tar.xz qemu-f42be416cd0d50bcb2987031fbab09ee257a5058.zip | |
hw/nvme: fix style
Identify command related functions style fix.
Signed-off-by: Gollu Appalanaidu <anaidu.gollu@samsung.com>
Signed-off-by: Klaus Jensen <k.jensen@samsung.com>
| -rw-r--r-- | hw/nvme/ctrl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hw/nvme/ctrl.c b/hw/nvme/ctrl.c index 0bcaf7192f..40a7efcea9 100644 --- a/hw/nvme/ctrl.c +++ b/hw/nvme/ctrl.c @@ -4291,7 +4291,7 @@ static uint16_t nvme_identify_ns_attached_list(NvmeCtrl *n, NvmeRequest *req) } static uint16_t nvme_identify_ns_csi(NvmeCtrl *n, NvmeRequest *req, - bool active) + bool active) { NvmeNamespace *ns; NvmeIdentify *c = (NvmeIdentify *)&req->cmd; @@ -4326,7 +4326,7 @@ static uint16_t nvme_identify_ns_csi(NvmeCtrl *n, NvmeRequest *req, } static uint16_t nvme_identify_nslist(NvmeCtrl *n, NvmeRequest *req, - bool active) + bool active) { NvmeNamespace *ns; NvmeIdentify *c = (NvmeIdentify *)&req->cmd; @@ -4373,7 +4373,7 @@ static uint16_t nvme_identify_nslist(NvmeCtrl *n, NvmeRequest *req, } static uint16_t nvme_identify_nslist_csi(NvmeCtrl *n, NvmeRequest *req, - bool active) + bool active) { NvmeNamespace *ns; NvmeIdentify *c = (NvmeIdentify *)&req->cmd; |
