summaryrefslogtreecommitdiff
path: root/include/linux/scmi_protocol.h
blob: 1f0e89b270c60b8b082da3f229233355d1f6afdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: GPL-2.0
/*
 * SCMI Message Protocol driver header
 *
 * Copyright (C) 2018 ARM Ltd.
 */
#include <linux/types.h>

/**
 * struct scmi_handle - Handle returned to ARM SCMI clients for usage.
 *
 * @dev: pointer to the SCMI device
 */
struct scmi_handle {
	struct device *dev;
};