mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Tweak some comments.
This commit is contained in:
parent
00b4e54ae7
commit
e57c620d84
1 changed files with 3 additions and 3 deletions
|
|
@ -43,9 +43,9 @@ struct trapframe;
|
|||
* together.
|
||||
*/
|
||||
struct intr_handler {
|
||||
driver_filter_t *ih_filter; /* Filter function. */
|
||||
driver_intr_t *ih_handler; /* Handler function. */
|
||||
void *ih_argument; /* Argument to pass to handler. */
|
||||
driver_filter_t *ih_filter; /* Filter handler function. */
|
||||
driver_intr_t *ih_handler; /* Threaded handler function. */
|
||||
void *ih_argument; /* Argument to pass to handlers. */
|
||||
int ih_flags;
|
||||
const char *ih_name; /* Name of handler. */
|
||||
struct intr_event *ih_event; /* Event we are connected to. */
|
||||
|
|
|
|||
Loading…
Reference in a new issue