diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-02-13 17:05:34 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-02-13 17:05:34 +0000 |
commit | 0a0bb9bb4aa08c8144736b2432c2aada57be8735 (patch) | |
tree | 3b2a846fae2b2f8d5c1ef57f67112a6d1247f272 /package/libnl-tiny/src/cache_mngt.c | |
parent | caadc06413c709ff297c951302d1c9be885c2129 (diff) | |
download | upstream-0a0bb9bb4aa08c8144736b2432c2aada57be8735.tar.gz upstream-0a0bb9bb4aa08c8144736b2432c2aada57be8735.tar.bz2 upstream-0a0bb9bb4aa08c8144736b2432c2aada57be8735.zip |
libnl-tiny: remove some more functions to reduce binary size
SVN-Revision: 25527
Diffstat (limited to 'package/libnl-tiny/src/cache_mngt.c')
-rw-r--r-- | package/libnl-tiny/src/cache_mngt.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/package/libnl-tiny/src/cache_mngt.c b/package/libnl-tiny/src/cache_mngt.c index d57d8364a8..5c32d2a1ff 100644 --- a/package/libnl-tiny/src/cache_mngt.c +++ b/package/libnl-tiny/src/cache_mngt.c @@ -73,6 +73,8 @@ struct nl_cache_ops *nl_cache_ops_associate(int protocol, int msgtype) return NULL; } +#ifdef disabled + /** * Lookup message type cache association * @arg ops cache operations @@ -118,6 +120,7 @@ void nl_cache_ops_foreach(void (*cb)(struct nl_cache_ops *, void *), void *arg) for (ops = cache_ops; ops; ops = ops->co_next) cb(ops, arg); } +#endif /** * Register a set of cache operations @@ -178,7 +181,7 @@ int nl_cache_mngt_unregister(struct nl_cache_ops *ops) * @name Global Cache Provisioning/Requiring * @{ */ - +#ifdef disabled /** * Provide a cache for global use * @arg cache cache to provide @@ -244,6 +247,7 @@ struct nl_cache *nl_cache_mngt_require(const char *name) return ops->co_major_cache; } +#endif /** @} */ /** @} */ |