Hello, APBPS2 driver is missing linux/slab.h required on at least PowerPC. See patch below. How do you want me to proceed? Thanks, Daniel diff --git a/drivers/input/serio/apbps2.c b/drivers/input/serio/apbps2.c index 611aac0..858b0c9 100644 --- a/drivers/input/serio/apbps2.c +++ b/drivers/input/serio/apbps2.c @@ -30,6 +30,7 @@ #include <linux/string.h> #include <linux/kernel.h> #include <linux/io.h> +#include <linux/slab.h> struct apbps2_regs { u32 __iomem data; /* 0x00 */ On 03/12/2013 05:30 AM, Stephen Rothwell wrote:
Hi all, After merging the final tree, today's linux-next build (powerpc allyesconfig) failed like this: drivers/input/serio/apbps2.c: In function 'apbps2_of_probe': drivers/input/serio/apbps2.c:176:2: error: implicit declaration of function 'kzalloc' [-Werror=implicit-function-declaration] drivers/input/serio/apbps2.c:176:11: warning: assignment makes pointer from integer without a cast [enabled by default] Caused by commit 928a48c9e40e ("Input: add support for GRLIB APBPS2 PS/2 Keyboard/Mouse") from the input tree. I have reverted that commit for today.
-- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html