Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=aec249bc1944c5359c6d3aa2f674be6a9fb3d076
Commit:     aec249bc1944c5359c6d3aa2f674be6a9fb3d076
Parent:     8674e0c9e570fcce948518e8fe518f4b61ac91fe
Author:     Nathan Lynch <[EMAIL PROTECTED]>
AuthorDate: Fri Aug 10 05:18:37 2007 +1000
Committer:  Paul Mackerras <[EMAIL PROTECTED]>
CommitDate: Fri Aug 17 11:01:53 2007 +1000

    [POWERPC] celleb_fake_pci_ops: Use named structure member initializers
    
    Signed-off-by: Nathan Lynch <[EMAIL PROTECTED]>
    Signed-off-by: Paul Mackerras <[EMAIL PROTECTED]>
---
 arch/powerpc/platforms/celleb/pci.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/powerpc/platforms/celleb/pci.c 
b/arch/powerpc/platforms/celleb/pci.c
index e0d97e0..11336b4 100644
--- a/arch/powerpc/platforms/celleb/pci.c
+++ b/arch/powerpc/platforms/celleb/pci.c
@@ -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,
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to