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