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