b.liu | 4e243dc | 2023-11-27 11:20:00 +0800 | [diff] [blame^] | 1 | #include "lynq-irq.h" |
| 2 | #include "mbtk_type.h" |
b.liu | 5fa9e77 | 2023-11-23 18:00:55 +0800 | [diff] [blame] | 3 | |
| 4 | int lynq_irq_install(int line, irq_handler irq_test_handler, int trig_type) |
| 5 | { |
| 6 | UNUSED(line); |
| 7 | UNUSED(irq_test_handler); |
| 8 | UNUSED(trig_type); |
| 9 | |
| 10 | return 0; |
| 11 | } |
| 12 | |
| 13 | int lynq_irq_unstall(int line) |
| 14 | { |
| 15 | UNUSED(line); |
| 16 | |
| 17 | return 0; |
| 18 | } |
| 19 | |
| 20 | int lynq_irq_set_type(int line, int trig_type) |
| 21 | { |
| 22 | UNUSED(line); |
| 23 | UNUSED(trig_type); |
| 24 | |
| 25 | return 0; |
| 26 | } |
| 27 | |
| 28 | int lynq_set_wake(int line, int en) |
| 29 | { |
| 30 | UNUSED(line); |
| 31 | UNUSED(en); |
| 32 | |
| 33 | return 0; |
| 34 | } |
| 35 | |
| 36 | int lynq_irq_get_wake(int line) |
| 37 | { |
| 38 | UNUSED(line); |
| 39 | |
| 40 | return 0; |
| 41 | } |
| 42 | |
| 43 | |