Sudeep Holla | aa4f886 | 2017-03-28 11:36:07 +0100 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0 |
2 | /* | ||||
3 | * SCMI Message Protocol driver header | ||||
4 | * | ||||
5 | * Copyright (C) 2018 ARM Ltd. | ||||
6 | */ | ||||
7 | #include <linux/types.h> | ||||
8 | |||||
9 | /** | ||||
10 | * struct scmi_handle - Handle returned to ARM SCMI clients for usage. | ||||
11 | * | ||||
12 | * @dev: pointer to the SCMI device | ||||
13 | */ | ||||
14 | struct scmi_handle { | ||||
15 | struct device *dev; | ||||
16 | }; |