summaryrefslogtreecommitdiff
path: root/drivers/tee/tee_service.c
blob: b01e9d0ac390b28bd9e9a1b7448913ac2a5710f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * TEE service to handle the calls to trusted applications.
 *
 * Copyright (C) ST-Ericsson SA 2010
 * Author: Joakim Bech <joakim.xx.bech@stericsson.com>
 * License terms: GNU General Public License (GPL) version 2
 */
#include <linux/kernel.h>
#include <linux/tee.h>
#include <linux/device.h>

int __weak call_sec_world(struct tee_session *ts, int sec_cmd)
{
	pr_info("[%s] Generic call_sec_world called!\n", __func__);

	return 0;
}