summaryrefslogtreecommitdiffstats
path: root/pci-fix-ats-compile.patch
diff options
context:
space:
mode:
authorJosh Boyer <jwboyer@redhat.com>2012-05-25 13:01:09 -0400
committerJosh Boyer <jwboyer@redhat.com>2012-05-25 13:01:09 -0400
commit31b0d22232f2df588f8fcf008ecdfa6a7158f7fb (patch)
tree2120621488f110c12f29619ab12ec1158a9372ca /pci-fix-ats-compile.patch
parente3ad20d482bb27ca42482280692ece86f0876904 (diff)
downloadkernel-31b0d22232f2df588f8fcf008ecdfa6a7158f7fb.tar.gz
kernel-31b0d22232f2df588f8fcf008ecdfa6a7158f7fb.tar.xz
kernel-31b0d22232f2df588f8fcf008ecdfa6a7158f7fb.zip
Clean up unreferenced patches
Diffstat (limited to 'pci-fix-ats-compile.patch')
-rw-r--r--pci-fix-ats-compile.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/pci-fix-ats-compile.patch b/pci-fix-ats-compile.patch
deleted file mode 100644
index 1dcb7e967..000000000
--- a/pci-fix-ats-compile.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-I get this compile failure on parisc:
-
-drivers/pci/ats.c: In function 'ats_alloc_one':
-drivers/pci/ats.c:29: error: implicit declaration of function 'kzalloc'
-drivers/pci/ats.c:29: warning: assignment makes pointer from integer without a cast
-drivers/pci/ats.c: In function 'ats_free_one':
-drivers/pci/ats.c:45: error: implicit declaration of function 'kfree'
-
-Because ats.c is missing linux/slab.h as an include. This patch fixes it
-
-Signed-off-by: James Bottomley <JBottomley@xxxxxxxxxxxxx>
-
----
-
-diff --git a/drivers/pci/ats.c b/drivers/pci/ats.c
-index 7ec56fb..b0dd08e 100644
---- a/drivers/pci/ats.c
-+++ b/drivers/pci/ats.c
-@@ -13,6 +13,7 @@
- #include <linux/export.h>
- #include <linux/pci-ats.h>
- #include <linux/pci.h>
-+#include <linux/slab.h>
-
- #include "pci.h"
-