29 lines
842 B
C
29 lines
842 B
C
|
/*
|
||
|
* Process Authentificator helpers
|
||
|
*
|
||
|
* Copyright (C) 2017 Samsung Electronics, Inc.
|
||
|
* Egor Uleyskiy, <e.uleyskiy@samsung.com>
|
||
|
*
|
||
|
* This software is licensed under the terms of the GNU General Public
|
||
|
* License version 2, as published by the Free Software Foundation, and
|
||
|
* may be copied, distributed, and modified under those terms.
|
||
|
*
|
||
|
* This program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*/
|
||
|
|
||
|
#ifndef __LINUX_FIVE_PROCA_H
|
||
|
#define __LINUX_FIVE_PROCA_H
|
||
|
|
||
|
#ifdef CONFIG_FIVE_PA_FEATURE
|
||
|
void fivepa_fsignature_free(struct file *file);
|
||
|
#else
|
||
|
static inline void fivepa_fsignature_free(struct file *file)
|
||
|
{
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif // __LINUX_FIVE_PROCA_H
|