blob: e3f88b2f87bef98d3b09354c47c153d07c3f0695 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright (C) 2020 Texas Instruments Incorporated - https://www.ti.com
*/
#ifndef K3_EVENT_ROUTER_
#define K3_EVENT_ROUTER_
#include <linux/types.h>
struct k3_event_route_data {
void *priv;
int (*set_event)(void *priv, u32 event);
};
#endif /* K3_EVENT_ROUTER_ */
|