Change formatting rules
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
#include <libk/std.h>
|
||||
#include <proc/reschedule.h>
|
||||
|
||||
typedef void (*irq_func_t) (void* arg, void* regs, bool user, struct reschedule_ctx* rctx);
|
||||
typedef void (*irq_func_t)(void* arg, void* regs, bool user, struct reschedule_ctx* rctx);
|
||||
|
||||
struct irq {
|
||||
uint32_t irq_num;
|
||||
@@ -16,8 +16,8 @@ struct irq {
|
||||
void* arg;
|
||||
};
|
||||
|
||||
bool irq_attach (irq_func_t func, void* arg, uint32_t irq_num);
|
||||
void irq_detach (uint32_t irq_num);
|
||||
struct irq* irq_find (uint32_t irq_num);
|
||||
bool irq_attach(irq_func_t func, void* arg, uint32_t irq_num);
|
||||
void irq_detach(uint32_t irq_num);
|
||||
struct irq* irq_find(uint32_t irq_num);
|
||||
|
||||
#endif // _KERNEL_IRQ_IRQ_H
|
||||
|
||||
Reference in New Issue
Block a user