20 lines
311 B
C
20 lines
311 B
C
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
/*
|
||
|
* Copyright (C) 2010, Lars-Peter Clausen <lars@metafoo.de>
|
||
|
* JZ4740 SoC prom code
|
||
|
*/
|
||
|
|
||
|
#include <linux/init.h>
|
||
|
|
||
|
#include <asm/bootinfo.h>
|
||
|
#include <asm/fw/fw.h>
|
||
|
|
||
|
void __init prom_init(void)
|
||
|
{
|
||
|
fw_init_cmdline();
|
||
|
}
|
||
|
|
||
|
void __init prom_free_prom_memory(void)
|
||
|
{
|
||
|
}
|