From 103281df0b7fec07872ef033666a1707b5755b9c Mon Sep 17 00:00:00 2001 From: Vipin Mehta Date: Fri, 17 Sep 2010 18:14:33 -0700 Subject: [PATCH] staging: ath6kl: Fixing a compile error The commit fixes a compilation error that was encountered while using a specific kernel configuration file. The problem was the use of some functions defined in without including the header file explicitly. It was probably working before because of the dependency getting implicitly satisfied via some other header file. Reported-by: Randy Dunlap Signed-off-by: Vipin Mehta Signed-off-by: Greg Kroah-Hartman --- drivers/staging/ath6kl/os/linux/include/osapi_linux.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/ath6kl/os/linux/include/osapi_linux.h b/drivers/staging/ath6kl/os/linux/include/osapi_linux.h index ef7cc827cfb4..fce6ceb73fa4 100644 --- a/drivers/staging/ath6kl/os/linux/include/osapi_linux.h +++ b/drivers/staging/ath6kl/os/linux/include/osapi_linux.h @@ -39,7 +39,7 @@ #include #include #include - +#include #include #ifdef __GNUC__ -- 2.39.5