You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
713 B
24 lines
713 B
/*
|
|
* Copyright (c) 2018 Samsung Electronics Co., Ltd. All Rights Reserved
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2
|
|
* as published by the Free Software Foundation.
|
|
*/
|
|
|
|
#include <linux/dsms.h>
|
|
|
|
#include "dsms_access_control.h"
|
|
|
|
// Policy entries *MUST BE* ordered by function_name field, as the find
|
|
// function uses binary search to find the function entry in the policy table.
|
|
|
|
// vvvvv DO NOT CHANGE THESE LINES! vvvvv
|
|
struct dsms_policy_entry dsms_policy[] = {
|
|
}; // dsms_policy
|
|
// ^^^^^ DO NOT CHANGE THESE LINES! ^^^^^
|
|
|
|
size_t dsms_policy_size(void)
|
|
{
|
|
return (sizeof dsms_policy)/(sizeof *dsms_policy);
|
|
}
|
|
|