Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ecd840ff authored by Doug Ledford's avatar Doug Ledford
Browse files

RDMA/hns: fix build regression



The 0day build system flags implicit includes as errors.  A patch from
Matan Barak to allow hns_roce, an aarch64 specific RDMA driver, to be
built on other arches, but it resulted in build regressions.  The
problem is that hns_roce_device.h needs a definition for __raw_writeq
but did not have an include to provide it.  Add <linux/io.h> as an
include to resolve the issue.

Signed-off-by: default avatarDoug Ledford <dledford@redhat.com>
parent d1d71499
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -33,6 +33,7 @@
#ifndef _HNS_ROCE_DEVICE_H
#ifndef _HNS_ROCE_DEVICE_H
#define _HNS_ROCE_DEVICE_H
#define _HNS_ROCE_DEVICE_H


#include <linux/io.h>
#include <rdma/ib_verbs.h>
#include <rdma/ib_verbs.h>


#define DRV_NAME "hns_roce"
#define DRV_NAME "hns_roce"