]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/x86/boot/compressed/cpuflags.c
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-bionic-kernel.git] / arch / x86 / boot / compressed / cpuflags.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
dd78b973
KC
2#ifdef CONFIG_RANDOMIZE_BASE
3
4#include "../cpuflags.c"
5
6bool has_cpuflag(int flag)
7{
6e6a4932 8 get_cpuflags();
dd78b973
KC
9
10 return test_bit(flag, cpu.flags);
11}
12
13#endif