Skip to content
Snippets Groups Projects
soc.c 325 B
Newer Older
  • Learn to ignore specific revisions
  • /*
     * (C) Copyright 2015
     * Kamil Lulko, <kamil.lulko@gmail.com>
     *
     * SPDX-License-Identifier:	GPL-2.0+
     */
    
    #include <common.h>
    #include <asm/io.h>
    #include <asm/armv7m.h>
    #include <asm/arch/stm32.h>
    
    u32 get_cpu_rev(void)
    {
    	return 0;
    }
    
    int arch_cpu_init(void)
    {
    	configure_clocks();
    
    	return 0;
    }
    
    void s_init(void)
    {
    }