diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2015-03-03 07:32:57 +0100 |
---|---|---|
committer | Kalle Valo <kvalo@codeaurora.org> | 2015-03-03 15:26:38 +0200 |
commit | 2264fc857decd45798368f46861d9aecac23546f (patch) | |
tree | c8a6d7d2c3ffd92d8b6daad45357bd786a944d89 /drivers/bcma/driver_pci_host.c | |
parent | 2f890caba6ddb8d72d485e94df74cfa7626ccb0f (diff) | |
download | blackbird-obmc-linux-2264fc857decd45798368f46861d9aecac23546f.tar.gz blackbird-obmc-linux-2264fc857decd45798368f46861d9aecac23546f.zip |
bcma: add missing includes
kbuild found out that commit 804e27dee49e ("bcma: support bringing up
bus hosted on PCIe Gen 2") broke the build on m68k:
drivers/bcma/driver_pcie2.c: In function 'bcma_core_pcie2_up':
>> drivers/bcma/driver_pcie2.c:196:2: error: implicit declaration of function 'pcie_set_readrq' [-Werror\
=implicit-function-declaration]
err = pcie_set_readrq(dev, pcie2->reqsize);
^
cc1: some warnings being treated as errors
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Diffstat (limited to 'drivers/bcma/driver_pci_host.c')
-rw-r--r-- | drivers/bcma/driver_pci_host.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/bcma/driver_pci_host.c b/drivers/bcma/driver_pci_host.c index c8a6b741967b..c42cec7c7ecc 100644 --- a/drivers/bcma/driver_pci_host.c +++ b/drivers/bcma/driver_pci_host.c @@ -11,6 +11,7 @@ #include "bcma_private.h" #include <linux/pci.h> +#include <linux/slab.h> #include <linux/export.h> #include <linux/bcma/bcma.h> #include <asm/paccess.h> |