Skip to content

Commit

Permalink
nvme/pci: Fix whitespace problem
Browse files Browse the repository at this point in the history
Convert to tabs and remove unneeded whitespaces.

Signed-off-by: Max Gurtovoy <maxg@mellanox.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
  • Loading branch information
Max Gurtovoy authored and Christoph Hellwig committed Dec 21, 2016
1 parent e6282ae commit 9fa196e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/nvme/host/pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
#define NVME_AQ_DEPTH 256
#define SQ_SIZE(depth) (depth * sizeof(struct nvme_command))
#define CQ_SIZE(depth) (depth * sizeof(struct nvme_completion))

/*
* We handle AEN commands ourselves and don't even let the
* block layer know about them.
Expand Down Expand Up @@ -1909,10 +1909,10 @@ static int nvme_dev_map(struct nvme_dev *dev)
if (!dev->bar)
goto release;

return 0;
return 0;
release:
pci_release_mem_regions(pdev);
return -ENODEV;
pci_release_mem_regions(pdev);
return -ENODEV;
}

static int nvme_probe(struct pci_dev *pdev, const struct pci_device_id *id)
Expand Down

0 comments on commit 9fa196e

Please sign in to comment.