mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 09:41:03 -04:00
Mark two functions as private.
This commit is contained in:
parent
02d06d3007
commit
621372ff84
6 changed files with 22 additions and 0 deletions
|
|
@ -723,6 +723,9 @@ add_intrdesc(intrec *idesc)
|
|||
* Add the interrupt handler descriptor data structure created by an
|
||||
* earlier call of create_intr() to the linked list for its irq and
|
||||
* adjust the interrupt masks if necessary.
|
||||
*
|
||||
* WARNING: This is an internal function and not to be used by device
|
||||
* drivers. It is subject to change without notice.
|
||||
*/
|
||||
|
||||
intrec *
|
||||
|
|
|
|||
|
|
@ -201,6 +201,11 @@ intrmask_t splq __P((intrmask_t mask));
|
|||
|
||||
#define INTR_FAST 0x00000001 /* fast interrupt handler */
|
||||
#define INTR_EXCL 0x00010000 /* excl. intr, default is shared */
|
||||
|
||||
/*
|
||||
* WARNING: These are internal functions and not to be used by device drivers!
|
||||
* They are subject to change without notice.
|
||||
*/
|
||||
struct intrec *inthand_add(const char *name, int irq, inthand2_t handler,
|
||||
void *arg, intrmask_t *maskptr, int flags);
|
||||
|
||||
|
|
|
|||
|
|
@ -723,6 +723,9 @@ add_intrdesc(intrec *idesc)
|
|||
* Add the interrupt handler descriptor data structure created by an
|
||||
* earlier call of create_intr() to the linked list for its irq and
|
||||
* adjust the interrupt masks if necessary.
|
||||
*
|
||||
* WARNING: This is an internal function and not to be used by device
|
||||
* drivers. It is subject to change without notice.
|
||||
*/
|
||||
|
||||
intrec *
|
||||
|
|
|
|||
|
|
@ -723,6 +723,9 @@ add_intrdesc(intrec *idesc)
|
|||
* Add the interrupt handler descriptor data structure created by an
|
||||
* earlier call of create_intr() to the linked list for its irq and
|
||||
* adjust the interrupt masks if necessary.
|
||||
*
|
||||
* WARNING: This is an internal function and not to be used by device
|
||||
* drivers. It is subject to change without notice.
|
||||
*/
|
||||
|
||||
intrec *
|
||||
|
|
|
|||
|
|
@ -201,6 +201,11 @@ intrmask_t splq __P((intrmask_t mask));
|
|||
|
||||
#define INTR_FAST 0x00000001 /* fast interrupt handler */
|
||||
#define INTR_EXCL 0x00010000 /* excl. intr, default is shared */
|
||||
|
||||
/*
|
||||
* WARNING: These are internal functions and not to be used by device drivers!
|
||||
* They are subject to change without notice.
|
||||
*/
|
||||
struct intrec *inthand_add(const char *name, int irq, inthand2_t handler,
|
||||
void *arg, intrmask_t *maskptr, int flags);
|
||||
|
||||
|
|
|
|||
|
|
@ -723,6 +723,9 @@ add_intrdesc(intrec *idesc)
|
|||
* Add the interrupt handler descriptor data structure created by an
|
||||
* earlier call of create_intr() to the linked list for its irq and
|
||||
* adjust the interrupt masks if necessary.
|
||||
*
|
||||
* WARNING: This is an internal function and not to be used by device
|
||||
* drivers. It is subject to change without notice.
|
||||
*/
|
||||
|
||||
intrec *
|
||||
|
|
|
|||
Loading…
Reference in a new issue