aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
authorAlexander Beregalov <a.beregalov@gmail.com>2013-11-14 17:32:19 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2013-11-14 19:32:23 -0500
commit8d3ef556aba2b5b7d8b7144f7be1814d75ea3cc6 (patch)
treea6c70ef917532c934e2c7cd269ce031f05b226e6 /include/linux
parenta99b7069aab8fc3fb4f26d15795dc280b52e38b1 (diff)
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>
Diffstat (limited to 'include/linux')
-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 @@
8#define CMDLINEPARSEH 8#define CMDLINEPARSEH
9 9
10#include <linux/blkdev.h> 10#include <linux/blkdev.h>
11#include <linux/fs.h>
12#include <linux/slab.h>
11 13
12/* partition flags */ 14/* partition flags */
13#define PF_RDONLY 0x01 /* Device is read only */ 15#define PF_RDONLY 0x01 /* Device is read only */