aboutsummaryrefslogtreecommitdiff
path: root/sysutils/intel-pcm
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2016-10-14 00:03:44 +0000
committerWarner Losh <imp@FreeBSD.org>2016-10-14 00:03:44 +0000
commit881f2cd7c3757ce9ceb2cc24074575686c568c71 (patch)
tree340c2ffd4d031cc5b1046088fdf3a57aefd6caff /sysutils/intel-pcm
parentbbbc6d2aea6258998b4f195f1a46ecc8e72a462d (diff)
downloadports-881f2cd7c3757ce9ceb2cc24074575686c568c71.tar.gz
ports-881f2cd7c3757ce9ceb2cc24074575686c568c71.zip
These aren't needed anymore, and should have been deleted with the
last import. Submitted by: gallatin@ Sponsored by: Netflix, Inc
Notes
Notes: svn path=/head/; revision=423942
Diffstat (limited to 'sysutils/intel-pcm')
-rw-r--r--sysutils/intel-pcm/files/patch-cpucounters.cpp17
-rw-r--r--sysutils/intel-pcm/files/patch-cpucounters.h11
2 files changed, 0 insertions, 28 deletions
diff --git a/sysutils/intel-pcm/files/patch-cpucounters.cpp b/sysutils/intel-pcm/files/patch-cpucounters.cpp
deleted file mode 100644
index 4e9f4f3e80e2..000000000000
--- a/sysutils/intel-pcm/files/patch-cpucounters.cpp
+++ /dev/null
@@ -1,17 +0,0 @@
---- cpucounters.cpp.orig 2015-11-17 01:01:38.000000000 -0700
-+++ cpucounters.cpp 2015-12-14 14:46:09.000000000 -0700
-@@ -1365,7 +1365,13 @@
- cpu_model = ATOM;
- }
- if (cpu_model == HASWELL_ULT || cpu_model == HASWELL_2) cpu_model = HASWELL;
-- if (cpu_model == BROADWELL_XEON_E3) cpu_model = BROADWELL;
-+
-+ if ((cpu_model == BROADWELL_XEON_E3) ||
-+ (cpu_model == BROADWELL_XEON_E5) ||
-+ (cpu_model == BROADWELL_XEON_E7)) {
-+ cpu_model = BROADWELL;
-+ }
-+
- if (cpu_model == SKL_UY) cpu_model = SKL;
-
- if(!isCPUModelSupported((int)cpu_model))
diff --git a/sysutils/intel-pcm/files/patch-cpucounters.h b/sysutils/intel-pcm/files/patch-cpucounters.h
deleted file mode 100644
index 487802e7b5bc..000000000000
--- a/sysutils/intel-pcm/files/patch-cpucounters.h
+++ /dev/null
@@ -1,11 +0,0 @@
---- cpucounters.h.orig 2015-11-17 01:01:38.000000000 -0700
-+++ cpucounters.h 2015-12-14 14:45:07.000000000 -0700
-@@ -709,6 +709,8 @@
- HASWELLX = 63,
- BROADWELL = 61,
- BROADWELL_XEON_E3 = 71,
-+ BROADWELL_XEON_E5 = 79,
-+ BROADWELL_XEON_E7 = 86,
- BDX_DE = 86,
- SKL_UY = 78,
- SKL = 94,