aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Kershner <[email protected]>2017-08-22 13:27:14 -0400
committerGreg Kroah-Hartman <[email protected]>2017-08-22 15:12:52 -0700
commitab3807d92f806f52aff8acb1a717f02f1e3b81f8 (patch)
tree2d7b4fed8f4095c272544f71fc85fb1d64643166
parentd8d9556ff1985c582b4d362b9ab0763108d35f82 (diff)
staging: unisys: visorbus: fix include dependency
Due to include order, the visorbus_private.h file was missing a required include header visorbus.h. If visorchipset.c or visorbus_main.c ever were to change the order of the includes for visobus.h and visorbus_private.h, the code would fail to compile. Reviewed-by: Sameer Wadgaonkar <[email protected]> Signed-off-by: David Kershner <[email protected]> Reviewed-by: Tim Sell <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r--drivers/staging/unisys/visorbus/visorbus_private.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/staging/unisys/visorbus/visorbus_private.h b/drivers/staging/unisys/visorbus/visorbus_private.h
index 6af9f7cc9c65..189503535388 100644
--- a/drivers/staging/unisys/visorbus/visorbus_private.h
+++ b/drivers/staging/unisys/visorbus/visorbus_private.h
@@ -21,6 +21,7 @@
#include "controlvmchannel.h"
#include "vbuschannel.h"
+#include "visorbus.h"
int visorchipset_bus_create(struct visor_device *bus_info);
void visorchipset_bus_destroy(struct visor_device *bus_info);