Fixed MTP to work with TWRP

This commit is contained in:
awab228 2018-06-19 23:16:04 +02:00
commit f6dfaef42e
50820 changed files with 20846062 additions and 0 deletions

30
drivers/crypto/fmp/last_file.c Executable file
View file

@ -0,0 +1,30 @@
/*
* Last 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.
*/
#include <linux/init.h>
const int last_fmp_rodata = 1000;
int last_fmp_data = 2000;
void last_fmp_text(void) __attribute__((unused));
void last_fmp_text (void)
{
}
void __init last_fmp_init(void) __attribute__((unused));
void __init last_fmp_init(void)
{
}
void __exit last_fmp_exit(void) __attribute__((unused));
void __exit last_fmp_exit(void)
{
}