blob: d4bec80f4ee620b5cc5bf2ee1c823240134fb261 (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef _SDRAM_H
#define _SDRAM_H
/*
* Provided for all PPC boards to to SDRAM initialization. This
* happens prior to entry into hardwaremain().
*/
extern void sdram_init(void);
#endif /* _SDRAM_H */
|