diff options
author | Nathan Lynch <ntl@pobox.com> | 2007-08-09 15:18:43 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-08-16 21:01:54 -0400 |
commit | 21d8f6c728a0eb852b521626a41b2bba6a6216d9 (patch) | |
tree | ed8ec7a96f9de6337b57898276fcce2849dabf51 /arch/powerpc | |
parent | 6127d1c0b097b2e9acc83dede1c1cb64ce76e7d5 (diff) |
[POWERPC] efika rtas_pci_ops: Use named structure member initializers
Signed-off-by: Nathan Lynch <ntl@pobox.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/platforms/52xx/efika.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/platforms/52xx/efika.c b/arch/powerpc/platforms/52xx/efika.c index 4be6e7a17b66..4263158b3274 100644 --- a/arch/powerpc/platforms/52xx/efika.c +++ b/arch/powerpc/platforms/52xx/efika.c | |||
@@ -78,8 +78,8 @@ static int rtas_write_config(struct pci_bus *bus, unsigned int devfn, | |||
78 | } | 78 | } |
79 | 79 | ||
80 | static struct pci_ops rtas_pci_ops = { | 80 | static struct pci_ops rtas_pci_ops = { |
81 | rtas_read_config, | 81 | .read = rtas_read_config, |
82 | rtas_write_config | 82 | .write = rtas_write_config, |
83 | }; | 83 | }; |
84 | 84 | ||
85 | 85 | ||