patch-2.4.21 linux-2.4.21/arch/ppc64/kernel/nvram.c
Next file: linux-2.4.21/arch/ppc64/kernel/pSeries_pci.c
Previous file: linux-2.4.21/arch/ppc64/kernel/mk_defs.c
Back to the patch index
Back to the overall index
-  Lines: 27
-  Date:
2003-06-13 07:51:32.000000000 -0700
-  Orig file: 
linux-2.4.20/arch/ppc64/kernel/nvram.c
-  Orig date: 
2002-08-02 17:39:43.000000000 -0700
diff -urN linux-2.4.20/arch/ppc64/kernel/nvram.c linux-2.4.21/arch/ppc64/kernel/nvram.c
@@ -99,11 +99,11 @@
 }
 
 struct file_operations nvram_fops = {
-	owner:		THIS_MODULE,
-	llseek:		nvram_llseek,
-	read:		read_nvram,
-	write:		write_nvram,
-	ioctl:		nvram_ioctl,
+	.owner =	THIS_MODULE,
+	.llseek =	nvram_llseek,
+	.read =		read_nvram,
+	.write =	write_nvram,
+	.ioctl =	nvram_ioctl,
 };
 
 static struct miscdevice nvram_dev = {
@@ -126,8 +126,7 @@
 	nvram_store = rtas_token("nvram-store");
 	printk(KERN_INFO "PPC64 nvram contains %d bytes\n", rtas_nvram_size);
 
-	misc_register(&nvram_dev);
-	return 0;
+	return misc_register(&nvram_dev);
 }
 
 void __exit nvram_cleanup(void)
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)