]> git.karo-electronics.de Git - linux-beck.git/commitdiff
sparc: fix implicit include of slab.h in leon_pci_grpci2.c
authorPaul Gortmaker <paul.gortmaker@windriver.com>
Thu, 13 Feb 2014 15:59:18 +0000 (10:59 -0500)
committerTejun Heo <tj@kernel.org>
Thu, 13 Feb 2014 21:18:00 +0000 (16:18 -0500)
To fix:

arch/sparc/kernel/leon_pci_grpci2.c: In function 'grpci2_of_probe':
arch/sparc/kernel/leon_pci_grpci2.c:720:2: error: implicit declaration of function 'kzalloc' [-Werror=implicit-function-declaration]
arch/sparc/kernel/leon_pci_grpci2.c:720:20: error: assignment makes pointer from integer without a cast [-Werror]
arch/sparc/kernel/leon_pci_grpci2.c:882:2: error: implicit declaration of function 'kfree' [-Werror=implicit-function-declaration]
cc1: all warnings being treated as errors
make[2]: *** [arch/sparc/kernel/leon_pci_grpci2.o] Error 1

According to Stephen, these types of failures are caused by commit
2bd59d48ebfb ("cgroup: convert to kernfs") which was being included
implicitly via cgroup.h's inclusion of xattr.h (which has now been
removed).

Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Acked-by: David S. Miller <davem@davemloft.net>
Cc: Stephen Rothwell <sfr@canb.auug.org.au>
arch/sparc/kernel/leon_pci_grpci2.c

index 5f0402aab7fb3677ad08517d189a8722cb015adc..24d6a44463494e0f4baae2928eaa715ea133ee62 100644 (file)
@@ -8,6 +8,7 @@
 #include <linux/of_device.h>
 #include <linux/kernel.h>
 #include <linux/pci.h>
+#include <linux/slab.h>
 #include <linux/delay.h>
 #include <linux/export.h>
 #include <asm/io.h>