]> git.ipfire.org Git - thirdparty/u-boot.git/blame - arch/x86/cpu/ivybridge/ivybridge.c
SPDX: Convert all of our single license tags to Linux Kernel style
[thirdparty/u-boot.git] / arch / x86 / cpu / ivybridge / ivybridge.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
43741396
BM
2/*
3 * Copyright (C) 2016, Bin Meng <bmeng.cn@gmail.com>
43741396
BM
4 */
5
6#include <common.h>
7#include <asm/post.h>
8#include <asm/processor.h>
9
10int arch_cpu_init(void)
11{
43741396
BM
12 post_code(POST_CPU_INIT);
13
0a8547a2 14 return x86_cpu_init_f();
43741396 15}