cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

k3-event-router.h (317B)


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