[POWERPC] rtas_pci_ops: Use named structure member initializers
Signed-off-by: Nathan Lynch <ntl@pobox.com> Signed-off-by: Paul Mackerras <paulus@samba.org>
This commit is contained in:
parent
1bdb2867e5
commit
8674e0c9e5
arch/powerpc/kernel
|
@ -171,8 +171,8 @@ static int rtas_pci_write_config(struct pci_bus *bus,
|
||||||
}
|
}
|
||||||
|
|
||||||
struct pci_ops rtas_pci_ops = {
|
struct pci_ops rtas_pci_ops = {
|
||||||
rtas_pci_read_config,
|
.read = rtas_pci_read_config,
|
||||||
rtas_pci_write_config
|
.write = rtas_pci_write_config,
|
||||||
};
|
};
|
||||||
|
|
||||||
int is_python(struct device_node *dev)
|
int is_python(struct device_node *dev)
|
||||||
|
|
Loading…
Reference in New Issue