dect
/
linux-2.6
Archived
13
0
Fork 0

sparc: Mark prom_early_alloc non-static.

A subsequent changeset will use this.

Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
David S. Miller 2008-12-05 00:40:43 -08:00
parent dfa76060be
commit efeac2f876
3 changed files with 4 additions and 2 deletions

View File

@ -7,4 +7,6 @@
extern struct device_node *allnodes; /* temporary while merging */
extern rwlock_t devtree_lock; /* temporary while merging */
extern void * prom_early_alloc(unsigned long size);
#endif /* __PROM_H */

View File

@ -29,7 +29,7 @@
static unsigned int prom_early_allocated;
static void * __init prom_early_alloc(unsigned long size)
void * __init prom_early_alloc(unsigned long size)
{
void *ret;

View File

@ -34,7 +34,7 @@
static unsigned int prom_early_allocated __initdata;
static void * __init prom_early_alloc(unsigned long size)
void * __init prom_early_alloc(unsigned long size)
{
unsigned long paddr = lmb_alloc(size, SMP_CACHE_BYTES);
void *ret;