diff options
author | Geert Uytterhoeven <geert@linux-m68k.org> | 2012-04-23 15:55:31 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-04-23 16:22:00 -0400 |
commit | 6ba0d809955b4e5c127093903661d0bde2e99d8e (patch) | |
tree | ff155446a03456016f2fd659f5a857c56e0bb5c7 /drivers | |
parent | 3d9545cc375d117554a9b35dfddadf9189c62775 (diff) |
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>
Diffstat (limited to 'drivers')
-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 @@ | |||
22 | #include <linux/delay.h> | 22 | #include <linux/delay.h> |
23 | #include <linux/platform_device.h> | 23 | #include <linux/platform_device.h> |
24 | #include <linux/module.h> | 24 | #include <linux/module.h> |
25 | #include <linux/slab.h> | ||
25 | #include <linux/usb/ehci_pdriver.h> | 26 | #include <linux/usb/ehci_pdriver.h> |
26 | #include <linux/usb/ohci_pdriver.h> | 27 | #include <linux/usb/ohci_pdriver.h> |
27 | 28 | ||