diff options
author | Kumar Gala <galak@freescale.com> | 2005-07-27 14:44:06 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-07-27 19:25:55 -0400 |
commit | d054b5acfe1f68460fe70aff5028ad95a7a38140 (patch) | |
tree | 516e1d017b38702b1f5cb0a712732770b41f7822 | |
parent | 694e50db5d75f4c29011d7d15e069a95aded8af1 (diff) |
[PATCH] ppc32: Add proper prototype for cpm2_reset()
Added a proper prototype for cpm2_reset() which gets rid of a build
warning.
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Signed-off-by: Kumar Gala <kumar.gala@freescale.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | arch/ppc/platforms/85xx/mpc8560_ads.c | 1 | ||||
-rw-r--r-- | arch/ppc/platforms/85xx/mpc85xx_cds_common.c | 2 | ||||
-rw-r--r-- | arch/ppc/platforms/85xx/stx_gp3.c | 3 | ||||
-rw-r--r-- | arch/ppc/syslib/cpm2_common.c | 1 | ||||
-rw-r--r-- | arch/ppc/syslib/m8260_setup.c | 3 | ||||
-rw-r--r-- | include/asm-ppc/cpm2.h | 5 |
6 files changed, 6 insertions, 9 deletions
diff --git a/arch/ppc/platforms/85xx/mpc8560_ads.c b/arch/ppc/platforms/85xx/mpc8560_ads.c index e18380258b68..f2748c88665a 100644 --- a/arch/ppc/platforms/85xx/mpc8560_ads.c +++ b/arch/ppc/platforms/85xx/mpc8560_ads.c | |||
@@ -56,7 +56,6 @@ | |||
56 | #include <syslib/ppc85xx_common.h> | 56 | #include <syslib/ppc85xx_common.h> |
57 | #include <syslib/ppc85xx_setup.h> | 57 | #include <syslib/ppc85xx_setup.h> |
58 | 58 | ||
59 | extern void cpm2_reset(void); | ||
60 | 59 | ||
61 | /* ************************************************************************ | 60 | /* ************************************************************************ |
62 | * | 61 | * |
diff --git a/arch/ppc/platforms/85xx/mpc85xx_cds_common.c b/arch/ppc/platforms/85xx/mpc85xx_cds_common.c index b52c4317fefd..6267b294f704 100644 --- a/arch/ppc/platforms/85xx/mpc85xx_cds_common.c +++ b/arch/ppc/platforms/85xx/mpc85xx_cds_common.c | |||
@@ -49,7 +49,7 @@ | |||
49 | #include <asm/mpc85xx.h> | 49 | #include <asm/mpc85xx.h> |
50 | #include <asm/irq.h> | 50 | #include <asm/irq.h> |
51 | #include <asm/immap_85xx.h> | 51 | #include <asm/immap_85xx.h> |
52 | #include <asm/immap_cpm2.h> | 52 | #include <asm/cpm2.h> |
53 | #include <asm/ppc_sys.h> | 53 | #include <asm/ppc_sys.h> |
54 | #include <asm/kgdb.h> | 54 | #include <asm/kgdb.h> |
55 | 55 | ||
diff --git a/arch/ppc/platforms/85xx/stx_gp3.c b/arch/ppc/platforms/85xx/stx_gp3.c index bb41265cfc85..c99b365d6110 100644 --- a/arch/ppc/platforms/85xx/stx_gp3.c +++ b/arch/ppc/platforms/85xx/stx_gp3.c | |||
@@ -52,14 +52,13 @@ | |||
52 | #include <asm/mpc85xx.h> | 52 | #include <asm/mpc85xx.h> |
53 | #include <asm/irq.h> | 53 | #include <asm/irq.h> |
54 | #include <asm/immap_85xx.h> | 54 | #include <asm/immap_85xx.h> |
55 | #include <asm/immap_cpm2.h> | 55 | #include <asm/cpm2.h> |
56 | #include <asm/mpc85xx.h> | 56 | #include <asm/mpc85xx.h> |
57 | #include <asm/ppc_sys.h> | 57 | #include <asm/ppc_sys.h> |
58 | 58 | ||
59 | #include <syslib/cpm2_pic.h> | 59 | #include <syslib/cpm2_pic.h> |
60 | #include <syslib/ppc85xx_common.h> | 60 | #include <syslib/ppc85xx_common.h> |
61 | 61 | ||
62 | extern void cpm2_reset(void); | ||
63 | 62 | ||
64 | unsigned char __res[sizeof(bd_t)]; | 63 | unsigned char __res[sizeof(bd_t)]; |
65 | 64 | ||
diff --git a/arch/ppc/syslib/cpm2_common.c b/arch/ppc/syslib/cpm2_common.c index 4c19a4ac7163..cbac44b1620c 100644 --- a/arch/ppc/syslib/cpm2_common.c +++ b/arch/ppc/syslib/cpm2_common.c | |||
@@ -27,7 +27,6 @@ | |||
27 | #include <asm/mpc8260.h> | 27 | #include <asm/mpc8260.h> |
28 | #include <asm/page.h> | 28 | #include <asm/page.h> |
29 | #include <asm/pgtable.h> | 29 | #include <asm/pgtable.h> |
30 | #include <asm/immap_cpm2.h> | ||
31 | #include <asm/cpm2.h> | 30 | #include <asm/cpm2.h> |
32 | #include <asm/rheap.h> | 31 | #include <asm/rheap.h> |
33 | 32 | ||
diff --git a/arch/ppc/syslib/m8260_setup.c b/arch/ppc/syslib/m8260_setup.c index fda75d79050c..8f80a42dfdb7 100644 --- a/arch/ppc/syslib/m8260_setup.c +++ b/arch/ppc/syslib/m8260_setup.c | |||
@@ -24,7 +24,7 @@ | |||
24 | #include <asm/io.h> | 24 | #include <asm/io.h> |
25 | #include <asm/pgtable.h> | 25 | #include <asm/pgtable.h> |
26 | #include <asm/mpc8260.h> | 26 | #include <asm/mpc8260.h> |
27 | #include <asm/immap_cpm2.h> | 27 | #include <asm/cpm2.h> |
28 | #include <asm/machdep.h> | 28 | #include <asm/machdep.h> |
29 | #include <asm/bootinfo.h> | 29 | #include <asm/bootinfo.h> |
30 | #include <asm/time.h> | 30 | #include <asm/time.h> |
@@ -33,7 +33,6 @@ | |||
33 | 33 | ||
34 | unsigned char __res[sizeof(bd_t)]; | 34 | unsigned char __res[sizeof(bd_t)]; |
35 | 35 | ||
36 | extern void cpm2_reset(void); | ||
37 | extern void pq2_find_bridges(void); | 36 | extern void pq2_find_bridges(void); |
38 | extern void pq2pci_init_irq(void); | 37 | extern void pq2pci_init_irq(void); |
39 | extern void idma_pci9_init(void); | 38 | extern void idma_pci9_init(void); |
diff --git a/include/asm-ppc/cpm2.h b/include/asm-ppc/cpm2.h index c5883dbed63f..9483d4bfacf7 100644 --- a/include/asm-ppc/cpm2.h +++ b/include/asm-ppc/cpm2.h | |||
@@ -109,6 +109,7 @@ static inline long IS_DPERR(const uint offset) | |||
109 | * and dual port ram. | 109 | * and dual port ram. |
110 | */ | 110 | */ |
111 | extern cpm_cpm2_t *cpmp; /* Pointer to comm processor */ | 111 | extern cpm_cpm2_t *cpmp; /* Pointer to comm processor */ |
112 | |||
112 | extern uint cpm_dpalloc(uint size, uint align); | 113 | extern uint cpm_dpalloc(uint size, uint align); |
113 | extern int cpm_dpfree(uint offset); | 114 | extern int cpm_dpfree(uint offset); |
114 | extern uint cpm_dpalloc_fixed(uint offset, uint size, uint align); | 115 | extern uint cpm_dpalloc_fixed(uint offset, uint size, uint align); |
@@ -116,6 +117,8 @@ extern void cpm_dpdump(void); | |||
116 | extern void *cpm_dpram_addr(uint offset); | 117 | extern void *cpm_dpram_addr(uint offset); |
117 | extern void cpm_setbrg(uint brg, uint rate); | 118 | extern void cpm_setbrg(uint brg, uint rate); |
118 | extern void cpm2_fastbrg(uint brg, uint rate, int div16); | 119 | extern void cpm2_fastbrg(uint brg, uint rate, int div16); |
120 | extern void cpm2_reset(void); | ||
121 | |||
119 | 122 | ||
120 | /* Buffer descriptors used by many of the CPM protocols. | 123 | /* Buffer descriptors used by many of the CPM protocols. |
121 | */ | 124 | */ |
@@ -1087,5 +1090,3 @@ typedef struct im_idma { | |||
1087 | 1090 | ||
1088 | #endif /* __CPM2__ */ | 1091 | #endif /* __CPM2__ */ |
1089 | #endif /* __KERNEL__ */ | 1092 | #endif /* __KERNEL__ */ |
1090 | |||
1091 | |||