From 86f6a5b8d1f160cc6f278f08f69d2c3d0f90b43c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0tetiar?= Date: Thu, 12 Dec 2019 16:42:39 +0100 Subject: blobmsg: reuse blobmsg_namelen in blobmsg_data MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Move blobmsg_namelen into header file so it's possible to reuse it in blobmsg_data. Signed-off-by: Petr Štetiar --- blobmsg.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'blobmsg.c') diff --git a/blobmsg.c b/blobmsg.c index 7cd0934..48dba81 100644 --- a/blobmsg.c +++ b/blobmsg.c @@ -25,12 +25,6 @@ static const int blob_type[__BLOBMSG_TYPE_LAST] = { [BLOBMSG_TYPE_UNSPEC] = BLOB_ATTR_BINARY, }; -static uint16_t -blobmsg_namelen(const struct blobmsg_hdr *hdr) -{ - return be16_to_cpu(hdr->namelen); -} - bool blobmsg_check_attr(const struct blob_attr *attr, bool name) { return blobmsg_check_attr_len(attr, name, blob_raw_len(attr)); -- cgit v1.2.3