Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f1d645f4 authored by Nathan Lynch's avatar Nathan Lynch Committed by Paul Mackerras
Browse files

[POWERPC] chrp pci_ops: Use named structure member initializers



Signed-off-by: default avatarNathan Lynch <ntl@pobox.com>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent 21d8f6c7
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -86,8 +86,8 @@ int gg2_write_config(struct pci_bus *bus, unsigned int devfn, int off,

static struct pci_ops gg2_pci_ops =
{
	gg2_read_config,
	gg2_write_config
	.read = gg2_read_config,
	.write = gg2_write_config,
};

/*
@@ -124,8 +124,8 @@ int rtas_write_config(struct pci_bus *bus, unsigned int devfn, int offset,

static struct pci_ops rtas_pci_ops =
{
	rtas_read_config,
	rtas_write_config
	.read = rtas_read_config,
	.write = rtas_write_config,
};

volatile struct Hydra __iomem *Hydra = NULL;