From: Alex Elder Date: Thu, 7 Jan 2021 23:34:03 +0000 (-0600) Subject: net: ipa: declare the page pointer type in "gsi_trans.h" X-Git-Tag: v5.15~1802^2~382^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a2d7764b3731260c59245e3fe4ce8bec7ec7bd27;p=platform%2Fkernel%2Flinux-starfive.git net: ipa: declare the page pointer type in "gsi_trans.h" The second argument to gsi_trans_page_add() is a page pointer. That declaration is found in header files used by "gsi_trans.h" for (at least) arm64 and x86 builds, but apparently not for alpha builds. Fix this by adding a declaration of struct page to the top of "gsi_trans.h". Reported-by: kernel test robot Signed-off-by: Alex Elder Signed-off-by: Jakub Kicinski --- diff --git a/drivers/net/ipa/gsi_trans.h b/drivers/net/ipa/gsi_trans.h index 4d4606b5fa95..3a4ab8a94d82 100644 --- a/drivers/net/ipa/gsi_trans.h +++ b/drivers/net/ipa/gsi_trans.h @@ -13,6 +13,7 @@ #include "ipa_cmd.h" +struct page; struct scatterlist; struct device; struct sk_buff;