From: Mark Brown Date: Tue, 7 Apr 2015 23:43:49 +0000 (+1000) Subject: include/linux/dmapool.h: declare struct device X-Git-Tag: KARO-TXA5-2015-06-26~18^2~503 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=58a034e2b5408c163fc34c7ede6148fece99619d;p=karo-tx-linux.git include/linux/dmapool.h: declare struct device dmapool uses struct device in function arguments but relies on an implicit inclusion to declare struct device causing warnings in some configurations: include/linux/dmapool.h:31:7: warning: 'struct device' declared inside parameter list Fix this by adding a struct device declaration to the file. Signed-off-by: Mark Brown Signed-off-by: Andrew Morton --- diff --git a/include/linux/dmapool.h b/include/linux/dmapool.h index 022e34fcbd1b..52456aa566a0 100644 --- a/include/linux/dmapool.h +++ b/include/linux/dmapool.h @@ -14,6 +14,8 @@ #include #include +struct device; + struct dma_pool *dma_pool_create(const char *name, struct device *dev, size_t size, size_t align, size_t allocation);