qcacmn: Add MACRO qdf_ceil

Add MACRO qdf_ceil(x, y) as DIV_ROUND_UP(x, y)

Change-Id: I92ecffbaf29c43809712e2b950a8064890e98136
CRs-Fixed: 2807611
This commit is contained in:
Jianmin Zhu
2020-10-29 09:25:10 +08:00
committed by snandini
parent b8b58d8d12
commit 6ce6be5c32
2 changed files with 10 additions and 0 deletions

View File

@@ -290,6 +290,15 @@ typedef __qdf_wait_queue_head_t qdf_wait_queue_head_t;
*/
#define qdf_roundup(x, y) __qdf_roundup(x, y)
/**
* qdf_ceil() - roundup of x/y
* @x: dividend
* @y: divisor
*
* Return: rounded value
*/
#define qdf_ceil(x, y) __qdf_ceil(x, y)
/**
* qdf_is_macaddr_equal() - compare two QDF MacAddress
* @mac_addr1: Pointer to one qdf MacAddress to compare