Browse Source

qcacmn: Add qdf roundup macro

Add qdf utility macro to roundup the input value

Change-Id: Ic1a7ee0d3a35090b3d0f24858ba8003eee86b057
CRs-Fixed: 947086
Sandeep Puligilla 9 years ago
parent
commit
4afc7c37ac
2 changed files with 9 additions and 0 deletions
  1. 8 0
      qdf/inc/qdf_util.h
  2. 1 0
      qdf/linux/src/i_qdf_util.h

+ 8 - 0
qdf/inc/qdf_util.h

@@ -112,6 +112,14 @@ static inline int qdf_status_to_os_return(QDF_STATUS status)
  */
 #define QDF_IS_PWR2(value) (((value) ^ ((value)-1)) == ((value) << 1) - 1)
 
+/**
+ * qdf_roundup() - roundup the input value
+ * @x: value to roundup
+ * @y: input value rounded to multiple of this
+ *
+ * Return: rounded value
+ */
+#define qdf_roundup(x, y) __qdf_roundup(x, y)
 
 /**
  * qdf_is_macaddr_equal() - compare two QDF MacAddress

+ 1 - 0
qdf/linux/src/i_qdf_util.h

@@ -236,4 +236,5 @@ static inline bool __qdf_is_macaddr_equal(struct qdf_mac_addr *mac_addr1,
 #define __qdf_rmb()                rmb()
 #define __qdf_mb()                 mb()
 
+#define __qdf_roundup(x, y) roundup(x, y)
 #endif /*_I_QDF_UTIL_H*/