aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-generic
diff options
context:
space:
mode:
authorBill Fischofer <bill.fischofer@linaro.org>2014-12-15 19:09:48 +0200
committerMaxim Uvarov <maxim.uvarov@linaro.org>2014-12-16 01:26:18 +0300
commit2fadaf4fef2b309da5c7477a9848737ec43e462e (patch)
tree8f213ee91466a4c3002ed59ddc20e5a3ff9d23a2 /platform/linux-generic
parent8c32b5196fb0762b185daa6491c7d5af11b55b1f (diff)
api: buffer: move odp_buffer_pool to odp_buffer.h
Signed-off-by: Bill Fischofer <bill.fischofer@linaro.org> Signed-off-by: Taras Kondratiuk <taras.kondratiuk@linaro.org> Reviewed-and-tested-by: Bill Fischofer <bill.fischofer@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
Diffstat (limited to 'platform/linux-generic')
-rw-r--r--platform/linux-generic/include/api/odp_buffer.h9
-rw-r--r--platform/linux-generic/include/api/odp_buffer_pool.h10
2 files changed, 9 insertions, 10 deletions
diff --git a/platform/linux-generic/include/api/odp_buffer.h b/platform/linux-generic/include/api/odp_buffer.h
index da23120e4..a7036e87a 100644
--- a/platform/linux-generic/include/api/odp_buffer.h
+++ b/platform/linux-generic/include/api/odp_buffer.h
@@ -73,6 +73,15 @@ int odp_buffer_type(odp_buffer_t buf);
int odp_buffer_is_valid(odp_buffer_t buf);
/**
+ * Buffer pool of the buffer
+ *
+ * @param buf Buffer handle
+ *
+ * @return Handle of buffer pool buffer belongs to
+ */
+odp_buffer_pool_t odp_buffer_pool(odp_buffer_t buf);
+
+/**
* Print buffer metadata to STDOUT
*
* @param buf Buffer handle
diff --git a/platform/linux-generic/include/api/odp_buffer_pool.h b/platform/linux-generic/include/api/odp_buffer_pool.h
index c12d71822..b287f79d8 100644
--- a/platform/linux-generic/include/api/odp_buffer_pool.h
+++ b/platform/linux-generic/include/api/odp_buffer_pool.h
@@ -88,16 +88,6 @@ odp_buffer_t odp_buffer_alloc(odp_buffer_pool_t pool);
*/
void odp_buffer_free(odp_buffer_t buf);
-
-/**
- * Buffer pool of the buffer
- *
- * @param buf Buffer handle
- *
- * @return Buffer pool the buffer was allocated from
- */
-odp_buffer_pool_t odp_buffer_pool(odp_buffer_t buf);
-
/**
* @}
*/