X-Git-Url: https://git.enpas.org/?a=blobdiff_plain;f=package%2Flibnl-tiny%2Fsrc%2Fcache_mngt.c;h=5c32d2a1ffb9578c256fd3a69bc044a47d57fc19;hb=e016e9a75ba28f200776b5bcd96287f6b710e188;hp=d57d8364a8a79d42c612c525efc5f61e4c8090a9;hpb=e8d08775f6f9dc8496ee6eea3cf91f06c5991c98;p=openwrt.git 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 /** @} */ /** @} */