]> asedeno.scripts.mit.edu Git - linux.git/commit
IB/hns: include linux/module.h
authorArnd Bergmann <arnd@arndb.de>
Fri, 17 Feb 2017 14:38:26 +0000 (15:38 +0100)
committerDoug Ledford <dledford@redhat.com>
Sun, 19 Feb 2017 14:27:28 +0000 (09:27 -0500)
commit3ecc16c82c068885cef5697d2f056a8fc317cf45
treeeb566cf5f017fbf8eefeebcf526d0350b4e8f931
parentc67294b70b5aafa2769e8c677a044243ce974c3a
IB/hns: include linux/module.h

I ran into a build error on arm64 randconfig testing:

infiniband/hw/hns/hns_roce_main.c:539:1: error: data definition has no type or storage class [-Werror]
infiniband/hw/hns/hns_roce_main.c:539:1: error: type defaults to 'int' in declaration of 'MODULE_DEVICE_TABLE' [-Werror=implicit-int]
infiniband/hw/hns/hns_roce_main.c:539:1: error: parameter names (without types) in function declaration [-Werror]
infiniband/hw/hns/hns_roce_main.c:979:226: error: data definition has no type or storage class [-Werror]
infiniband/hw/hns/hns_roce_main.c:979:226: error: type defaults to 'int' in declaration of 'module_init' [-Werror=implicit-int]
infiniband/hw/hns/hns_roce_main.c:979:1: error: parameter names (without types) in function declaration [-Werror]

Including the module.h makes it build again.

Fixes: 9a4435375cd1 ("IB/hns: Add driver files for hns RoCE driver")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Doug Ledford <dledford@redhat.com>
drivers/infiniband/hw/hns/hns_roce_main.c