Skip to content

Commit

Permalink
[POWERPC] null_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 3fac10e commit 6127d1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/powerpc/kernel/pci_32.c
Original file line number Diff line number Diff line change
Expand Up @@ -1457,8 +1457,8 @@ null_write_config(struct pci_bus *bus, unsigned int devfn, int offset,

static struct pci_ops null_pci_ops =
{
null_read_config,
null_write_config
.read = null_read_config,
.write = null_write_config,
};

/*
Expand Down

0 comments on commit 6127d1c

Please sign in to comment.