WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-ppc-devel

[XenPPC] [pushed] [ppc] add missing "static" storage class for local fun

To: xen-ppc-devel@xxxxxxxxxxxxxxxxxxx
Subject: [XenPPC] [pushed] [ppc] add missing "static" storage class for local functions
From: jimix@xxxxxxxxxxxxxx
Date: Fri, 28 Apr 2006 17:48:17 -0400
Delivery-date: Fri, 28 Apr 2006 14:47:28 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-ppc-devel-request@lists.xensource.com?subject=help>
List-id: Xen PPC development <xen-ppc-devel.lists.xensource.com>
List-post: <mailto:xen-ppc-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-ppc-devel>, <mailto:xen-ppc-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-ppc-devel>, <mailto:xen-ppc-devel-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-ppc-devel-bounces@xxxxxxxxxxxxxxxxxxx
changeset:   9955:ef9509966a21bbae75598c5984e915f33322fae9
user:        jimix@xxxxxxxxxxxxxxxxxxxxx
date:        Thu Apr 27 14:33:49 2006 -0400
files:       xen/arch/ppc/boot_of.c
description:
[ppc] add missing "static" storage class for local functions


diff -r 2faf0acd35984f1d8d3cc28d6feb990ede3cf7b4 -r 
ef9509966a21bbae75598c5984e915f33322fae9 xen/arch/ppc/boot_of.c
--- a/xen/arch/ppc/boot_of.c    Thu Apr 27 14:30:08 2006 -0400
+++ b/xen/arch/ppc/boot_of.c    Thu Apr 27 14:33:49 2006 -0400
@@ -827,7 +827,7 @@ static void boot_of_module(ulong r3, ulo
 }
 
 
-int __init boot_of_serial(void)
+static int __init boot_of_serial(void)
 {
     /* right now we are punting and using mambo writes which is the
      * hardcoded setup */
@@ -835,7 +835,7 @@ int __init boot_of_serial(void)
     return 1;
 }
 
-int __init boot_of_cpus(void)
+static int __init boot_of_cpus(void)
 {
     int cpus;
     int cpu;
@@ -860,9 +860,8 @@ int __init boot_of_cpus(void)
     return 1;
 }
 
-int __init boot_of_rtas(void)
-{
-
+static int __init boot_of_rtas(void)
+{
     return 1;
 }
 



_______________________________________________
Xen-ppc-devel mailing list
Xen-ppc-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-ppc-devel

<Prev in Thread] Current Thread [Next in Thread>
  • [XenPPC] [pushed] [ppc] add missing "static" storage class for local functions, jimix <=