X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=include%2Fsandboxblockdev.h;h=dc983f0417b248c981b11c98671635ef36a986af;hb=ddd39d0cc1a025a1e2e3c792cc8286dbdfa29b54;hp=4006e942a028c2d15022ad8bb05c22886c75e28d;hpb=db8b46120aed6554d1ff405260ea6d2cc2439fcc;p=platform%2Fkernel%2Fu-boot.git diff --git a/include/sandboxblockdev.h b/include/sandboxblockdev.h index 4006e94..dc983f0 100644 --- a/include/sandboxblockdev.h +++ b/include/sandboxblockdev.h @@ -6,6 +6,9 @@ #ifndef __SANDBOX_BLOCK_DEV__ #define __SANDBOX_BLOCK_DEV__ +/* Maximum number of host devices - see drivers/block/sandbox.c */ +#define SANDBOX_HOST_MAX_DEVICES 4 + struct host_block_dev { #ifndef CONFIG_BLK struct blk_desc blk_dev; @@ -23,4 +26,6 @@ struct host_block_dev { */ int host_dev_bind(int dev, char *filename, bool removable); +int host_get_dev_err(int dev, struct blk_desc **blk_devp); + #endif