From f66427adfd407ea08236ab541df192e15671b6cf Mon Sep 17 00:00:00 2001 From: Viresh Kumar Date: Wed, 2 Sep 2015 21:27:13 +0530 Subject: [PATCH] greybus: svc: Include system headers at the top System headers should get included before greybus.h. Its followed everywhere except svc.c. Fix it. Reported-by: Johan Hovold Signed-off-by: Viresh Kumar Signed-off-by: Johan Hovold --- drivers/staging/greybus/svc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/staging/greybus/svc.c b/drivers/staging/greybus/svc.c index ac8ff44f3a89..3b37dfeb8ef4 100644 --- a/drivers/staging/greybus/svc.c +++ b/drivers/staging/greybus/svc.c @@ -7,9 +7,10 @@ * Released under the GPLv2 only. */ -#include "greybus.h" #include +#include "greybus.h" + #define CPORT_FLAGS_E2EFC (1) #define CPORT_FLAGS_CSD_N (2) #define CPORT_FLAGS_CSV_N (4)