summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Beregalov <a.beregalov@gmail.com>2013-11-15 02:32:19 +0400
committerLinus Torvalds <torvalds@linux-foundation.org>2013-11-15 04:32:23 +0400
commit8d3ef556aba2b5b7d8b7144f7be1814d75ea3cc6 (patch)
treea6c70ef917532c934e2c7cd269ce031f05b226e6
parenta99b7069aab8fc3fb4f26d15795dc280b52e38b1 (diff)
downloadlinux-8d3ef556aba2b5b7d8b7144f7be1814d75ea3cc6.tar.xz
cmdline-parser: fix build
Fix following errors: include/linux/cmdline-parser.h:17:12: error: 'BDEVNAME_SIZE' undeclared here block/cmdline-parser.c:17:2: error: implicit declaration of function 'kzalloc' Signed-off-by: Alexander Beregalov <alexander.beregalov@intel.com> Cc: CaiZhiyong <caizhiyong@huawei.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r--include/linux/cmdline-parser.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/cmdline-parser.h b/include/linux/cmdline-parser.h
index 98e892ef6d5a..a0f9280421ec 100644
--- a/include/linux/cmdline-parser.h
+++ b/include/linux/cmdline-parser.h
@@ -8,6 +8,8 @@
#define CMDLINEPARSEH
#include <linux/blkdev.h>
+#include <linux/fs.h>
+#include <linux/slab.h>
/* partition flags */
#define PF_RDONLY 0x01 /* Device is read only */