aboutsummaryrefslogtreecommitdiff
path: root/include/odp
diff options
context:
space:
mode:
authorPetri Savolainen <petri.savolainen@nokia.com>2016-04-26 13:40:45 +0300
committerMaxim Uvarov <maxim.uvarov@linaro.org>2016-04-27 09:24:49 +0300
commit7a56ae3eb9947755d6b58a64bd0d06795cd097c0 (patch)
tree6223a2c9f83c3a54e4b06e3f9af8ed75b2c48962 /include/odp
parent64f8fa212ef3008c66a37938faf011f67fb2cb0d (diff)
api: config: removed config.h
Removed all references to config.h which is now empty. Signed-off-by: Petri Savolainen <petri.savolainen@nokia.com> Reviewed-and-tested-by: Bill Fischofer <bill.fischofer@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
Diffstat (limited to 'include/odp')
-rw-r--r--include/odp/api/spec/config.h44
-rw-r--r--include/odp/api/spec/cpumask.h2
-rw-r--r--include/odp/api/spec/packet.h5
3 files changed, 2 insertions, 49 deletions
diff --git a/include/odp/api/spec/config.h b/include/odp/api/spec/config.h
deleted file mode 100644
index 4c1df4173..000000000
--- a/include/odp/api/spec/config.h
+++ /dev/null
@@ -1,44 +0,0 @@
-/* Copyright (c) 2013, Linaro Limited
- * All rights reserved.
- *
- * SPDX-License-Identifier: BSD-3-Clause
- */
-
-
-/**
- * @file
- *
- * ODP configuration
- */
-
-#ifndef ODP_API_CONFIG_H_
-#define ODP_API_CONFIG_H_
-#include <odp/api/visibility_begin.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-/** @defgroup odp_config ODP CONFIG
- * Platform-specific configuration limits.
- *
- * @note The API calls defined for ODP configuration limits are the
- * normative means of accessing platform-specific configuration limits.
- * Platforms MAY in addition include \#defines for these limits for
- * internal use in dimensioning arrays, however there is no guarantee
- * that applications using such \#defines will be portable across all
- * ODP implementations. Applications SHOULD expect that over time such
- * \#defines will be deprecated and removed.
- * @{
- */
-
-/**
- * @}
- */
-
-#ifdef __cplusplus
-}
-#endif
-
-#include <odp/api/visibility_end.h>
-#endif
diff --git a/include/odp/api/spec/cpumask.h b/include/odp/api/spec/cpumask.h
index 129b3c18e..6e16fd0c0 100644
--- a/include/odp/api/spec/cpumask.h
+++ b/include/odp/api/spec/cpumask.h
@@ -19,8 +19,6 @@
extern "C" {
#endif
-#include <odp/api/config.h>
-
/** @defgroup odp_cpumask ODP CPUMASK
* CPU mask operations.
* @{
diff --git a/include/odp/api/spec/packet.h b/include/odp/api/spec/packet.h
index 5e84abbd6..ae5a47151 100644
--- a/include/odp/api/spec/packet.h
+++ b/include/odp/api/spec/packet.h
@@ -93,9 +93,8 @@ extern "C" {
* @return Handle of allocated packet
* @retval ODP_PACKET_INVALID Packet could not be allocated
*
- * @note The default headroom and tailroom used for packets is specified by
- * the ODP_CONFIG_PACKET_HEADROOM and ODP_CONFIG_PACKET_TAILROOM defines in
- * odp_config.h.
+ * @note The minimum headroom and tailroom used for packets is specified by
+ * pool capabilities min_headroom and min_tailroom.
*/
odp_packet_t odp_packet_alloc(odp_pool_t pool, uint32_t len);