mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 20:22:09 +00:00
11237651e2
The sram initialization code is the only shared omap1/2 code that is not a standalone driver, but it is very short. Having two copies of this code means some duplication of the sources, but actually saves object code size as it can be inlined better. Acked-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
11 lines
326 B
C
11 lines
326 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
extern void omap_sram_reprogram_clock(u32 dpllctl, u32 ckctl);
|
|
|
|
int omap1_sram_init(void);
|
|
void *omap_sram_push(void *funcp, unsigned long size);
|
|
|
|
/* Do not use these */
|
|
extern void omap1_sram_reprogram_clock(u32 ckctl, u32 dpllctl);
|
|
extern unsigned long omap1_sram_reprogram_clock_sz;
|