diff options
Diffstat (limited to 'include/part.h')
| -rw-r--r-- | include/part.h | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/include/part.h b/include/part.h index c58a734ad..12e9b056e 100644 --- a/include/part.h +++ b/include/part.h @@ -55,6 +55,10 @@ typedef struct block_dev_desc {  	void		*priv;		/* driver private struct pointer */  }block_dev_desc_t; +#define BLOCK_CNT(size, block_dev_desc) (PAD_COUNT(size, block_dev_desc->blksz)) +#define PAD_TO_BLOCKSIZE(size, block_dev_desc) \ +	(PAD_SIZE(size, block_dev_desc->blksz)) +  /* Interface types: */  #define IF_TYPE_UNKNOWN		0  #define IF_TYPE_IDE		1 |