From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from sceptre.pobox.com (sceptre.pobox.com [207.106.133.20]) by ozlabs.org (Postfix) with ESMTP id 4C7CADDF06 for ; Fri, 10 Aug 2007 05:18:55 +1000 (EST) From: Nathan Lynch To: linuxppc-dev@ozlabs.org Subject: [PATCH 01/11] rtas_pci_ops: use named structure member initializers Date: Thu, 9 Aug 2007 14:18:36 -0500 Message-Id: <11866871293663-git-send-email-ntl@pobox.com> In-Reply-To: <11866871262306-git-send-email-ntl@pobox.com> References: <11866871262306-git-send-email-ntl@pobox.com> Cc: Paul Mackerras List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Signed-off-by: Nathan Lynch --- arch/powerpc/kernel/rtas_pci.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/powerpc/kernel/rtas_pci.c b/arch/powerpc/kernel/rtas_pci.c index a5de621..21f14e5 100644 --- a/arch/powerpc/kernel/rtas_pci.c +++ b/arch/powerpc/kernel/rtas_pci.c @@ -171,8 +171,8 @@ static int rtas_pci_write_config(struct pci_bus *bus, } struct pci_ops rtas_pci_ops = { - rtas_pci_read_config, - rtas_pci_write_config + .read = rtas_pci_read_config, + .write = rtas_pci_write_config, }; int is_python(struct device_node *dev) -- 1.5.2.4