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