diff options
author | Nathan Lynch <ntl@pobox.com> | 2007-08-09 15:18:37 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-08-16 21:01:53 -0400 |
commit | aec249bc1944c5359c6d3aa2f674be6a9fb3d076 (patch) | |
tree | 9493858b421ce8a106daf455e472570921586048 | |
parent | 8674e0c9e570fcce948518e8fe518f4b61ac91fe (diff) |
[POWERPC] celleb_fake_pci_ops: Use named structure member initializers
Signed-off-by: Nathan Lynch <ntl@pobox.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
-rw-r--r-- | arch/powerpc/platforms/celleb/pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/platforms/celleb/pci.c b/arch/powerpc/platforms/celleb/pci.c index e0d97e02ef1f..11336b40feca 100644 --- a/arch/powerpc/platforms/celleb/pci.c +++ b/arch/powerpc/platforms/celleb/pci.c | |||
@@ -242,8 +242,8 @@ static int celleb_fake_pci_write_config(struct pci_bus *bus, | |||
242 | } | 242 | } |
243 | 243 | ||
244 | static struct pci_ops celleb_fake_pci_ops = { | 244 | static struct pci_ops celleb_fake_pci_ops = { |
245 | celleb_fake_pci_read_config, | 245 | .read = celleb_fake_pci_read_config, |
246 | celleb_fake_pci_write_config | 246 | .write = celleb_fake_pci_write_config, |
247 | }; | 247 | }; |
248 | 248 | ||
249 | static inline void celleb_setup_pci_base_addrs(struct pci_controller *hose, | 249 | static inline void celleb_setup_pci_base_addrs(struct pci_controller *hose, |