root/arch/mips/jz4740/prom.c

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. prom_init
  2. prom_free_prom_memory

   1 // SPDX-License-Identifier: GPL-2.0-or-later
   2 /*
   3  *  Copyright (C) 2010, Lars-Peter Clausen <lars@metafoo.de>
   4  *  JZ4740 SoC prom code
   5  */
   6 
   7 #include <linux/init.h>
   8 
   9 #include <asm/bootinfo.h>
  10 #include <asm/fw/fw.h>
  11 
  12 void __init prom_init(void)
  13 {
  14         fw_init_cmdline();
  15 }
  16 
  17 void __init prom_free_prom_memory(void)
  18 {
  19 }

/* [<][>][^][v][top][bottom][index][help] */