Message ID | 1403272331-3790755-2-git-send-email-arnd@arndb.de (mailing list archive) |
---|---|
State | New, archived |
Delegated to: | Bjorn Helgaas |
Headers | show |
diff --git a/drivers/thunderbolt/eeprom.c b/drivers/thunderbolt/eeprom.c index 0d5a80b..bc0449f 100644 --- a/drivers/thunderbolt/eeprom.c +++ b/drivers/thunderbolt/eeprom.c @@ -5,6 +5,7 @@ */ #include <linux/crc32.h> +#include <linux/slab.h> #include "tb.h" /** diff --git a/drivers/thunderbolt/switch.c b/drivers/thunderbolt/switch.c index 0d50e7e..26e76e4 100644 --- a/drivers/thunderbolt/switch.c +++ b/drivers/thunderbolt/switch.c @@ -5,6 +5,7 @@ */ #include <linux/delay.h> +#include <linux/slab.h> #include "tb.h"
The kmalloc/kzalloc/kfree functions are declared in linux/slab.h, so we have to explicitly include that header to avoid build failures on ARM and other architectures that don't include these implicitly through another header. Signed-off-by: Arnd Bergmann <arnd@arndb.de> --- drivers/thunderbolt/eeprom.c | 1 + drivers/thunderbolt/switch.c | 1 + 2 files changed, 2 insertions(+)