diff options
author | Nathan Lynch <ntl@pobox.com> | 2007-08-09 15:18:40 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-08-16 21:01:53 -0400 |
commit | 1bb8c6216f08519c16ce20b82e6f6a59fe0ce717 (patch) | |
tree | 3e01a4483ef30ca2afb2aebd9967897ce27abbfe | |
parent | 2e67d40762215bcd7c9b81e828ef6de453a09bc4 (diff) |
[POWERPC] pa_pxp_ops: Use named structure member initializers
Signed-off-by: Nathan Lynch <ntl@pobox.com>
Acked-by: Olof Johansson <olof@lixom.net>
Signed-off-by: Paul Mackerras <paulus@samba.org>
-rw-r--r-- | arch/powerpc/platforms/pasemi/pci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/platforms/pasemi/pci.c b/arch/powerpc/platforms/pasemi/pci.c index ab1f5f62bcd8..882b571ba92c 100644 --- a/arch/powerpc/platforms/pasemi/pci.c +++ b/arch/powerpc/platforms/pasemi/pci.c | |||
@@ -122,8 +122,8 @@ static int pa_pxp_write_config(struct pci_bus *bus, unsigned int devfn, | |||
122 | } | 122 | } |
123 | 123 | ||
124 | static struct pci_ops pa_pxp_ops = { | 124 | static struct pci_ops pa_pxp_ops = { |
125 | pa_pxp_read_config, | 125 | .read = pa_pxp_read_config, |
126 | pa_pxp_write_config, | 126 | .write = pa_pxp_write_config, |
127 | }; | 127 | }; |
128 | 128 | ||
129 | static void __init setup_pa_pxp(struct pci_controller *hose) | 129 | static void __init setup_pa_pxp(struct pci_controller *hose) |