Browse Source

[POWERPC] celleb_epci_ops: Use named structure member initializers

Signed-off-by: Nathan Lynch <ntl@pobox.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Nathan Lynch 18 years ago
parent
commit
3e02aebbca
1 changed files with 2 additions and 2 deletions
  1. 2 2
      arch/powerpc/platforms/celleb/scc_epci.c

+ 2 - 2
arch/powerpc/platforms/celleb/scc_epci.c

@@ -278,8 +278,8 @@ static int celleb_epci_write_config(struct pci_bus *bus,
 }
 }
 
 
 struct pci_ops celleb_epci_ops = {
 struct pci_ops celleb_epci_ops = {
-	celleb_epci_read_config,
-	celleb_epci_write_config,
+	.read = celleb_epci_read_config,
+	.write = celleb_epci_write_config,
 };
 };
 
 
 /* to be moved in FW */
 /* to be moved in FW */