mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
Replace previous change by a move of a #include since something else
#includes "smbus.h". There is still some bogus (but harmless) stuff here surrounding the #include <sys/bus.h> includes here and elsewhere in the bktr code.
This commit is contained in:
parent
e96d838a6a
commit
ab1f00b960
1 changed files with 3 additions and 5 deletions
|
|
@ -50,7 +50,6 @@
|
|||
|
||||
#ifdef __FreeBSD__
|
||||
#include "bktr.h"
|
||||
#include "smbus.h"
|
||||
#endif /* __FreeBSD__ */
|
||||
|
||||
#include "opt_bktr.h" /* include any kernel config options */
|
||||
|
|
@ -100,10 +99,6 @@
|
|||
#include <pci/pcivar.h>
|
||||
#include <pci/pcireg.h>
|
||||
|
||||
#if (NSMBUS > 0)
|
||||
#include <dev/bktr/bktr_i2c.h>
|
||||
#endif
|
||||
|
||||
#include <sys/sysctl.h>
|
||||
int bt848_card = -1;
|
||||
int bt848_tuner = -1;
|
||||
|
|
@ -189,6 +184,9 @@ int bktr_debug = 0;
|
|||
#include <dev/bktr/bktr_audio.h>
|
||||
#include <dev/bktr/bktr_core.h>
|
||||
#include <dev/bktr/bktr_os.h>
|
||||
#if (NSMBUS > 0)
|
||||
#include <dev/bktr/bktr_i2c.h>
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue