k3-event-router.h 317 B

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