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>
This commit is contained in:
Alexander Beregalov 2013-11-14 14:32:19 -08:00 committed by Linus Torvalds
parent a99b7069aa
commit 8d3ef556ab

View file

@ -8,6 +8,8 @@
#define CMDLINEPARSEH #define CMDLINEPARSEH
#include <linux/blkdev.h> #include <linux/blkdev.h>
#include <linux/fs.h>
#include <linux/slab.h>
/* partition flags */ /* partition flags */
#define PF_RDONLY 0x01 /* Device is read only */ #define PF_RDONLY 0x01 /* Device is read only */