diff options
author | Marcel Moolenaar <marcel@FreeBSD.org> | 2005-04-20 20:26:39 +0000 |
---|---|---|
committer | Marcel Moolenaar <marcel@FreeBSD.org> | 2005-04-20 20:26:39 +0000 |
commit | 7ad17ef97e6577a7f56ace20d7ff12ee07889d19 (patch) | |
tree | e07c500b8686cbf2dc5b61ddbaf1c80c450c4ad7 | |
parent | 76b6d954f07f16043a2d0eeece4725144032a4e3 (diff) |
Notes
-rw-r--r-- | sys/dev/hwpmc/hwpmc_amd.c | 3 | ||||
-rw-r--r-- | sys/dev/hwpmc/hwpmc_intel.c | 3 | ||||
-rw-r--r-- | sys/dev/hwpmc/hwpmc_mod.c | 2 | ||||
-rw-r--r-- | sys/dev/hwpmc/hwpmc_pentium.c | 3 | ||||
-rw-r--r-- | sys/dev/hwpmc/hwpmc_piv.c | 3 | ||||
-rw-r--r-- | sys/dev/hwpmc/hwpmc_ppro.c | 3 | ||||
-rw-r--r-- | sys/hwpmc/hwpmc_amd.c | 3 | ||||
-rw-r--r-- | sys/hwpmc/hwpmc_intel.c | 3 | ||||
-rw-r--r-- | sys/hwpmc/hwpmc_mod.c | 2 | ||||
-rw-r--r-- | sys/hwpmc/hwpmc_pentium.c | 3 | ||||
-rw-r--r-- | sys/hwpmc/hwpmc_piv.c | 3 | ||||
-rw-r--r-- | sys/hwpmc/hwpmc_ppro.c | 3 |
12 files changed, 10 insertions, 24 deletions
diff --git a/sys/dev/hwpmc/hwpmc_amd.c b/sys/dev/hwpmc/hwpmc_amd.c index c3bb56ce628d9..a78943a125a9e 100644 --- a/sys/dev/hwpmc/hwpmc_amd.c +++ b/sys/dev/hwpmc/hwpmc_amd.c @@ -34,12 +34,11 @@ __FBSDID("$FreeBSD$"); #include <sys/lock.h> #include <sys/malloc.h> #include <sys/mutex.h> +#include <sys/pmc.h> #include <sys/smp.h> #include <sys/systm.h> #include <machine/md_var.h> -#include <machine/pmc_mdep.h> -#include <machine/specialreg.h> /* AMD K7 and K8 PMCs */ diff --git a/sys/dev/hwpmc/hwpmc_intel.c b/sys/dev/hwpmc/hwpmc_intel.c index 2448b37e3c9eb..3f6f330df6d63 100644 --- a/sys/dev/hwpmc/hwpmc_intel.c +++ b/sys/dev/hwpmc/hwpmc_intel.c @@ -30,14 +30,13 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> #include <sys/lock.h> #include <sys/mutex.h> +#include <sys/pmc.h> #include <sys/pmckern.h> #include <sys/smp.h> #include <sys/systm.h> #include <machine/cputypes.h> #include <machine/md_var.h> -#include <machine/pmc_mdep.h> -#include <machine/specialreg.h> struct pmc_mdep * pmc_intel_initialize(void) diff --git a/sys/dev/hwpmc/hwpmc_mod.c b/sys/dev/hwpmc/hwpmc_mod.c index 13ddf0c9c3006..3f5cbd779e0f0 100644 --- a/sys/dev/hwpmc/hwpmc_mod.c +++ b/sys/dev/hwpmc/hwpmc_mod.c @@ -50,8 +50,6 @@ __FBSDID("$FreeBSD$"); #include <sys/systm.h> #include <machine/md_var.h> -#include <machine/pmc_mdep.h> -#include <machine/specialreg.h> /* * Types diff --git a/sys/dev/hwpmc/hwpmc_pentium.c b/sys/dev/hwpmc/hwpmc_pentium.c index 9a02f414a7342..48e8be34df0d7 100644 --- a/sys/dev/hwpmc/hwpmc_pentium.c +++ b/sys/dev/hwpmc/hwpmc_pentium.c @@ -30,14 +30,13 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> #include <sys/lock.h> #include <sys/mutex.h> +#include <sys/pmc.h> #include <sys/pmckern.h> #include <sys/smp.h> #include <sys/systm.h> #include <machine/cputypes.h> #include <machine/md_var.h> -#include <machine/pmc_mdep.h> -#include <machine/specialreg.h> /* * Intel Pentium PMCs diff --git a/sys/dev/hwpmc/hwpmc_piv.c b/sys/dev/hwpmc/hwpmc_piv.c index 8085a0e92a3df..de2ad7040e9a3 100644 --- a/sys/dev/hwpmc/hwpmc_piv.c +++ b/sys/dev/hwpmc/hwpmc_piv.c @@ -30,14 +30,13 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> #include <sys/lock.h> #include <sys/mutex.h> +#include <sys/pmc.h> #include <sys/pmckern.h> #include <sys/smp.h> #include <sys/systm.h> #include <machine/cputypes.h> #include <machine/md_var.h> -#include <machine/pmc_mdep.h> -#include <machine/specialreg.h> /* * PENTIUM 4 SUPPORT diff --git a/sys/dev/hwpmc/hwpmc_ppro.c b/sys/dev/hwpmc/hwpmc_ppro.c index 3a289a5358698..c08c5091c5b2a 100644 --- a/sys/dev/hwpmc/hwpmc_ppro.c +++ b/sys/dev/hwpmc/hwpmc_ppro.c @@ -30,14 +30,13 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> #include <sys/lock.h> #include <sys/mutex.h> +#include <sys/pmc.h> #include <sys/pmckern.h> #include <sys/smp.h> #include <sys/systm.h> #include <machine/cputypes.h> #include <machine/md_var.h> -#include <machine/pmc_mdep.h> -#include <machine/specialreg.h> /* * PENTIUM PRO SUPPORT diff --git a/sys/hwpmc/hwpmc_amd.c b/sys/hwpmc/hwpmc_amd.c index c3bb56ce628d9..a78943a125a9e 100644 --- a/sys/hwpmc/hwpmc_amd.c +++ b/sys/hwpmc/hwpmc_amd.c @@ -34,12 +34,11 @@ __FBSDID("$FreeBSD$"); #include <sys/lock.h> #include <sys/malloc.h> #include <sys/mutex.h> +#include <sys/pmc.h> #include <sys/smp.h> #include <sys/systm.h> #include <machine/md_var.h> -#include <machine/pmc_mdep.h> -#include <machine/specialreg.h> /* AMD K7 and K8 PMCs */ diff --git a/sys/hwpmc/hwpmc_intel.c b/sys/hwpmc/hwpmc_intel.c index 2448b37e3c9eb..3f6f330df6d63 100644 --- a/sys/hwpmc/hwpmc_intel.c +++ b/sys/hwpmc/hwpmc_intel.c @@ -30,14 +30,13 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> #include <sys/lock.h> #include <sys/mutex.h> +#include <sys/pmc.h> #include <sys/pmckern.h> #include <sys/smp.h> #include <sys/systm.h> #include <machine/cputypes.h> #include <machine/md_var.h> -#include <machine/pmc_mdep.h> -#include <machine/specialreg.h> struct pmc_mdep * pmc_intel_initialize(void) diff --git a/sys/hwpmc/hwpmc_mod.c b/sys/hwpmc/hwpmc_mod.c index 13ddf0c9c3006..3f5cbd779e0f0 100644 --- a/sys/hwpmc/hwpmc_mod.c +++ b/sys/hwpmc/hwpmc_mod.c @@ -50,8 +50,6 @@ __FBSDID("$FreeBSD$"); #include <sys/systm.h> #include <machine/md_var.h> -#include <machine/pmc_mdep.h> -#include <machine/specialreg.h> /* * Types diff --git a/sys/hwpmc/hwpmc_pentium.c b/sys/hwpmc/hwpmc_pentium.c index 9a02f414a7342..48e8be34df0d7 100644 --- a/sys/hwpmc/hwpmc_pentium.c +++ b/sys/hwpmc/hwpmc_pentium.c @@ -30,14 +30,13 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> #include <sys/lock.h> #include <sys/mutex.h> +#include <sys/pmc.h> #include <sys/pmckern.h> #include <sys/smp.h> #include <sys/systm.h> #include <machine/cputypes.h> #include <machine/md_var.h> -#include <machine/pmc_mdep.h> -#include <machine/specialreg.h> /* * Intel Pentium PMCs diff --git a/sys/hwpmc/hwpmc_piv.c b/sys/hwpmc/hwpmc_piv.c index 8085a0e92a3df..de2ad7040e9a3 100644 --- a/sys/hwpmc/hwpmc_piv.c +++ b/sys/hwpmc/hwpmc_piv.c @@ -30,14 +30,13 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> #include <sys/lock.h> #include <sys/mutex.h> +#include <sys/pmc.h> #include <sys/pmckern.h> #include <sys/smp.h> #include <sys/systm.h> #include <machine/cputypes.h> #include <machine/md_var.h> -#include <machine/pmc_mdep.h> -#include <machine/specialreg.h> /* * PENTIUM 4 SUPPORT diff --git a/sys/hwpmc/hwpmc_ppro.c b/sys/hwpmc/hwpmc_ppro.c index 3a289a5358698..c08c5091c5b2a 100644 --- a/sys/hwpmc/hwpmc_ppro.c +++ b/sys/hwpmc/hwpmc_ppro.c @@ -30,14 +30,13 @@ __FBSDID("$FreeBSD$"); #include <sys/param.h> #include <sys/lock.h> #include <sys/mutex.h> +#include <sys/pmc.h> #include <sys/pmckern.h> #include <sys/smp.h> #include <sys/systm.h> #include <machine/cputypes.h> #include <machine/md_var.h> -#include <machine/pmc_mdep.h> -#include <machine/specialreg.h> /* * PENTIUM PRO SUPPORT |