Loading arch/x86/kernel/msr.c +1 −1 Original line number Diff line number Diff line Loading @@ -206,7 +206,7 @@ static int msr_device_create(int cpu) dev = device_create(msr_class, NULL, MKDEV(MSR_MAJOR, cpu), NULL, "msr%d", cpu); return IS_ERR(dev) ? PTR_ERR(dev) : 0; return PTR_ERR_OR_ZERO(dev); } static void msr_device_destroy(int cpu) Loading Loading
arch/x86/kernel/msr.c +1 −1 Original line number Diff line number Diff line Loading @@ -206,7 +206,7 @@ static int msr_device_create(int cpu) dev = device_create(msr_class, NULL, MKDEV(MSR_MAJOR, cpu), NULL, "msr%d", cpu); return IS_ERR(dev) ? PTR_ERR(dev) : 0; return PTR_ERR_OR_ZERO(dev); } static void msr_device_destroy(int cpu) Loading