Skip to content

Commit

Permalink
[POWERPC] celleb_fake_pci_ops: Use named structure member initializers
Browse files Browse the repository at this point in the history
Signed-off-by: Nathan Lynch <ntl@pobox.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
  • Loading branch information
Nathan Lynch authored and Paul Mackerras committed Aug 17, 2007
1 parent 8674e0c commit aec249b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/powerpc/platforms/celleb/pci.c
Original file line number Diff line number Diff line change
Expand Up @@ -242,8 +242,8 @@ static int celleb_fake_pci_write_config(struct pci_bus *bus,
}

static struct pci_ops celleb_fake_pci_ops = {
celleb_fake_pci_read_config,
celleb_fake_pci_write_config
.read = celleb_fake_pci_read_config,
.write = celleb_fake_pci_write_config,
};

static inline void celleb_setup_pci_base_addrs(struct pci_controller *hose,
Expand Down

0 comments on commit aec249b

Please sign in to comment.