Commit
5c42ea1643 used spaces instead of tabs.
Also remove the unnecessary initialisation of the 'result' variable.
Signed-off-by: Matthew Wilcox <matthew.r.wilcox@intel.com>
static int __init nvme_init(void)
{
- int result = -EBUSY;
+ int result;
nvme_thread = kthread_run(nvme_kthread, NULL, "nvme");
if (IS_ERR(nvme_thread))
if (result < 0)
goto kill_kthread;
else if (result > 0)
- nvme_major = result;
+ nvme_major = result;
result = pci_register_driver(&nvme_driver);
if (result)