diff options
author | Alexander Gordeev <agordeev@redhat.com> | 2014-02-19 09:58:20 +0100 |
---|---|---|
committer | Jens Axboe <axboe@fb.com> | 2014-02-21 15:45:26 -0800 |
commit | 1bc5ce5df95f6366e38d509cfac3c75e4554fdd2 (patch) | |
tree | 194cff8e2219b4fbb4a9e9791e0ab42423d3fa6c /drivers/block/skd_main.c | |
parent | 46817769edb239b511a63345ba2f3c87803f1c14 (diff) |
skd: Use unified access to skdev->msix_entries throughout the code
Signed-off-by: Alexander Gordeev <agordeev@redhat.com>
Cc: Jens Axboe <axboe@kernel.dk>
Cc: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Cc: Kyungmin Park <kyungmin.park@samsung.com>
Cc: linux-pci@vger.kernel.org
Signed-off-by: Jens Axboe <axboe@fb.com>
Diffstat (limited to 'drivers/block/skd_main.c')
-rw-r--r-- | drivers/block/skd_main.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/block/skd_main.c b/drivers/block/skd_main.c index d0550ba948fa..1cd1095cf8e6 100644 --- a/drivers/block/skd_main.c +++ b/drivers/block/skd_main.c @@ -3977,8 +3977,8 @@ static int skd_acquire_msix(struct skd_device *skdev) goto msix_out; } - qentry = skdev->msix_entries; for (i = 0; i < skdev->msix_count; i++) { + qentry = &skdev->msix_entries[i]; qentry->vector = entries[i].vector; qentry->entry = entries[i].entry; qentry->rsp = NULL; @@ -3987,7 +3987,6 @@ static int skd_acquire_msix(struct skd_device *skdev) skdev->name, __func__, __LINE__, pci_name(pdev), skdev->name, i, qentry->vector, qentry->entry); - qentry++; } /* Enable MSI-X vectors for the base queue */ |