diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2012-04-23 21:55:31 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-04-23 13:22:00 -0700 |
commit | 6ba0d809955b4e5c127093903661d0bde2e99d8e (patch) | |
tree | ff155446a03456016f2fd659f5a857c56e0bb5c7 | |
parent | 3d9545cc375d117554a9b35dfddadf9189c62775 (diff) | |
download | linux-6ba0d809955b4e5c127093903661d0bde2e99d8e.tar.bz2 |
usb/bcma: Add missing #include <linux/slab.h>
m68k/allmodconfig:
drivers/usb/host/bcma-hcd.c: In function ‘bcma_hcd_probe’:
drivers/usb/host/bcma-hcd.c:234: error: implicit declaration of function ‘kzalloc’
drivers/usb/host/bcma-hcd.c:234: warning: assignment makes pointer from integer without a cast
drivers/usb/host/bcma-hcd.c:264: error: implicit declaration of function ‘kfree’
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/usb/host/bcma-hcd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/host/bcma-hcd.c b/drivers/usb/host/bcma-hcd.c index 0b35d422fa4e..443da21d73ca 100644 --- a/drivers/usb/host/bcma-hcd.c +++ b/drivers/usb/host/bcma-hcd.c @@ -22,6 +22,7 @@ #include <linux/delay.h> #include <linux/platform_device.h> #include <linux/module.h> +#include <linux/slab.h> #include <linux/usb/ehci_pdriver.h> #include <linux/usb/ohci_pdriver.h> |