kernel_samsung_a53x/drivers/soc/samsung/cpif/cpif_qos_info.h
2024-06-15 16:02:09 -03:00

25 lines
439 B
C
Executable file

/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright (C) 2019, Samsung Electronics.
*
*/
#ifndef __CPIF_QOS_INFO_H__
#define __CPIF_QOS_INFO_H__
#include <linux/types.h>
#include <linux/hashtable.h>
struct hiprio_uid_list {
DECLARE_HASHTABLE(uid_map, 9);
};
struct hiprio_uid {
u32 uid;
struct hlist_node h_node;
};
int cpif_qos_init_list(void);
struct hiprio_uid *cpif_qos_get_node(u32 uid);
#endif /* __CPIF_QOS_INFO_H__ */