From 3f4ec2b0479ca560b72dd47a8d6765daf7be18a6 Mon Sep 17 00:00:00 2001 From: Krzysztof Mazur Date: Sat, 25 Jun 2011 20:33:54 +0200 Subject: [PATCH 43/84] lsbd: fix linux/lsbd.h compilation from userspace The include linux/types.h was missing in linux/lsbd.h which caused compilation errors. --- include/linux/lsbd.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/linux/lsbd.h b/include/linux/lsbd.h index 419cb26..36b8954 100644 --- a/include/linux/lsbd.h +++ b/include/linux/lsbd.h @@ -1,6 +1,6 @@ /* * ar3c-kernel - lsbd.h - * Copyright (C) 2010 Krzysztof Mazur + * Copyright (C) 2010, 2011 Krzysztof Mazur * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -21,6 +21,7 @@ #define __LINUX_LSBD_H #include +#include #define LSBD_SET_DEV _IO('l', 0x0) #define LSBD_PART _IO('l', 0x1) -- 1.8.4.652.g0d6e0ce