From: Sachin Kamat Date: Fri, 20 Jun 2014 09:02:30 +0000 (+0530) Subject: thunderbolt: Fix build error in switch.c X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=10fefe56bba413fb0525207c65cf50cf2a5afaff;p=linux-beck.git thunderbolt: Fix build error in switch.c Fixes the below error: drivers/thunderbolt/switch.c:347:2: error: implicit declaration of function ‘kzalloc’ [-Werror=implicit-function-declaration] drivers/thunderbolt/switch.c:381:2: error: implicit declaration of function ‘kcalloc’ [-Werror=implicit-function-declaration] Signed-off-by: Sachin Kamat Acked-by: Andreas Noever Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/thunderbolt/switch.c b/drivers/thunderbolt/switch.c index 0d50e7e7b29b..26e76e4aa835 100644 --- a/drivers/thunderbolt/switch.c +++ b/drivers/thunderbolt/switch.c @@ -5,6 +5,7 @@ */ #include +#include #include "tb.h"