This file uses interrupt APIs but doesn't explicitly include linux/interrupt.h meaning that changes in other header files could cause build breakage as happened in next-20170728 for arm64. Add an explicit include to avoid such problems. Signed-off-by: Mark Brown <broonie@xxxxxxxxxx> --- drivers/infiniband/hw/hns/hns_roce_eq.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/infiniband/hw/hns/hns_roce_eq.c b/drivers/infiniband/hw/hns/hns_roce_eq.c index 50f864935a0e..e1e4c16ca3d5 100644 --- a/drivers/infiniband/hw/hns/hns_roce_eq.c +++ b/drivers/infiniband/hw/hns/hns_roce_eq.c @@ -30,6 +30,7 @@ * SOFTWARE. */ +#include <linux/interrupt.h> #include <linux/platform_device.h> #include "hns_roce_common.h" #include "hns_roce_device.h" -- 2.13.2 -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html