Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0ac13140 authored by Matthew Wilcox's avatar Matthew Wilcox
Browse files

NVMe: Fix whitespace damage in nvme_init



Commit 5c42ea16 used spaces instead of tabs.
Also remove the unnecessary initialisation of the 'result' variable.

Signed-off-by: default avatarMatthew Wilcox <matthew.r.wilcox@intel.com>
parent 22fff826
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1720,7 +1720,7 @@ static struct pci_driver nvme_driver = {

static int __init nvme_init(void)
{
	int result = -EBUSY;
	int result;

	nvme_thread = kthread_run(nvme_kthread, NULL, "nvme");
	if (IS_ERR(nvme_thread))