qcacmn: Add MACRO qdf_ceil

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

Change-Id: I92ecffbaf29c43809712e2b950a8064890e98136
CRs-Fixed: 2807611
Tento commit je obsažen v:
Jianmin Zhu
2020-10-29 09:25:10 +08:00
odevzdal snandini
rodič b8b58d8d12
revize 6ce6be5c32
2 změnil soubory, kde provedl 10 přidání a 0 odebrání

Zobrazit soubor

@@ -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

Zobrazit soubor

@@ -267,6 +267,7 @@ static inline bool __qdf_is_macaddr_equal(struct qdf_mac_addr *mac_addr1,
#define __qdf_iowrite32(offset, value) iowrite32(value, offset)
#define __qdf_roundup(x, y) roundup(x, y)
#define __qdf_ceil(x, y) DIV_ROUND_UP(x, y)
#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 3, 0)
#define __qdf_ewma_tx_lag_init(tx_lag)