diff options
author | Rui Miguel Silva | 2019-08-28 13:48:25 +0100 |
---|---|---|
committer | Greg Kroah-Hartman | 2019-08-28 17:24:22 +0200 |
commit | e003f9af9b8dc110dd62b7eaa3a796fd81d4d256 (patch) | |
tree | c776aa9a430bc5c2fef0d04a4d0689bc4412a087 /include/linux/greybus | |
parent | c10bf3921e743dadb11a6cf59ffaf38cdbeb281b (diff) |
staging: greybus: fix more header declarations
More headers needed to be fixed when moving greybus out of staging and
enabling the COMPILE_TEST option.
Add forward declarations for the needed structures.
Reported-by: kbuild test robot <lkp@intel.com>
Signed-off-by: Rui Miguel Silva <rui.silva@linaro.org>
Reviewed-by: Johan Hovold <johan@kernel.org>
Link: https://lore.kernel.org/r/20190828124825.20800-1-rui.silva@linaro.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux/greybus')
-rw-r--r-- | include/linux/greybus/operation.h | 2 | ||||
-rw-r--r-- | include/linux/greybus/svc.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/greybus/operation.h b/include/linux/greybus/operation.h index 8ca864bba23e..cb8e4ef45222 100644 --- a/include/linux/greybus/operation.h +++ b/include/linux/greybus/operation.h @@ -15,7 +15,7 @@ #include <linux/types.h> #include <linux/workqueue.h> - +struct gb_host_device; struct gb_operation; /* The default amount of time a request is given to complete */ diff --git a/include/linux/greybus/svc.h b/include/linux/greybus/svc.h index 507f8bd4e4c8..5afaf5f06856 100644 --- a/include/linux/greybus/svc.h +++ b/include/linux/greybus/svc.h @@ -12,6 +12,8 @@ #include <linux/types.h> #include <linux/device.h> +struct gb_svc_l2_timer_cfg; + #define GB_SVC_CPORT_FLAG_E2EFC BIT(0) #define GB_SVC_CPORT_FLAG_CSD_N BIT(1) #define GB_SVC_CPORT_FLAG_CSV_N BIT(2) |