From: Sarah Sharp Date: Thu, 30 Apr 2009 02:06:56 +0000 (-0700) Subject: USB: xhci: Make xhci-mem.c include linux/dmapool.h X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=527c6d7f188f116852141f50b4d008f966bb17f8;p=GitHub%2Fmt8127%2Fandroid_kernel_alcatel_ttab.git USB: xhci: Make xhci-mem.c include linux/dmapool.h xhci-mem.c includes calls to dma_pool_alloc() and other functions defined in linux/dmapool.h. Make sure to include that header file. Reported-by: Randy Dunlap Signed-off-by: Sarah Sharp Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/usb/host/xhci-mem.c b/drivers/usb/host/xhci-mem.c index a7fbd6c10add..37a83878a064 100644 --- a/drivers/usb/host/xhci-mem.c +++ b/drivers/usb/host/xhci-mem.c @@ -22,6 +22,7 @@ #include #include +#include #include "xhci.h"