3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-01-31 15:22:18 +00:00
Brooklyn/include/linux/dma/k3-event-router.h
2022-04-02 18:17:33 +05:00

17 lines
317 B
C

/* 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_ */