lineage_kernel_xcoverpro/drivers/crypto/fmp/first_file.c

24 lines
706 B
C
Executable File

/*
* First file for Exynos FMP FIPS integrity check
*
* Copyright (C) 2015 Samsung Electronics Co., Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
__attribute__ ((section(".rodata"), unused))
const unsigned char first_fmp_rodata = 0x10;
__attribute__ ((section(".text"), unused))
void first_fmp_text(void){}
#ifdef CC_USE_CLANG
__attribute__ ((section(".init.text"), unused))
#else
__attribute__ ((section(".init.text"), optimize("-O0"), unused))
#endif
void first_fmp_init(void){};