1
0
mirror of https://github.com/physwizz/a155-U-u1.git synced 2025-07-14 08:44:45 +00:00
Files
a155-U-u1/kernel-5.10/drivers/misc/tui/iwd_agent.h
physwizz 99537be4e2 first
2024-03-11 06:53:12 +11:00

25 lines
601 B
C

/* tui/iwd_agent.h
*
* IWD agent module contains all iwd socket calls.
*
* Copyright (c) 2020 Samsung Electronics Co., Ltd All Rights Reserved
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#ifndef __IWD_AGENT_H__
#define __IWD_AGENT_H__
#include <linux/types.h>
extern unsigned int tzdev_is_up(void);
int init_iwd_agent(void);
void uninit_iwd_agent(void);
int __init_iwd_agent(void);
void __uninit_iwd_agent(void);
#endif /* __IWD_AGENT_H__ */