-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrs_irq_rx.h
32 lines (22 loc) · 908 Bytes
/
rs_irq_rx.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// SPDX-License-Identifier: GPL-2.0-or-later
/**
* Copyright (C) [2022-2023] Renesas Electronics Corporation and/or its affiliates.
*/
#ifndef RS_IRQ_RX_H
#define RS_IRQ_RX_H
////////////////////////////////////////////////////////////////////////////////
/// INCLUDE
#include "rs_priv.h"
////////////////////////////////////////////////////////////////////////////////
/// MACRO DEFITION
////////////////////////////////////////////////////////////////////////////////
/// TYPE DEFINITION
////////////////////////////////////////////////////////////////////////////////
/// GLOBAL VARIABLE
////////////////////////////////////////////////////////////////////////////////
/// GLOBAL FUNCTION
s32 rs_irq_rx_init(struct rs_core *core);
void rs_irq_rx_deinit(struct rs_core *core);
void rs_irq_rx_work(struct work_struct *work);
s32 rs_irq_rx_handler(struct rs_core *core);
#endif /* RS_IRQ_RX_H */