From patchwork Mon Jan 8 18:16:06 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Breno Leitao X-Patchwork-Id: 13513802 Received: from mail-ed1-f54.google.com (mail-ed1-f54.google.com [209.85.208.54]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id BE6A155E67; Mon, 8 Jan 2024 18:16:56 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=debian.org Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=gmail.com Received: by mail-ed1-f54.google.com with SMTP id 4fb4d7f45d1cf-555aa7fd668so2371030a12.0; Mon, 08 Jan 2024 10:16:56 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1704737815; x=1705342615; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=XSw5SvHccqbRf/pikKUBURIR6qjS3hHMkgDAPoX96gU=; b=O1cuVcgItPH61ekcB21nUxRncsd/yMaYh2XFP5olg89e7s5AtNCk3C/jMRnHlODpbf oaFxxkObMElE+YqP4LJuM7bpbzKtdwAM+09MTq7oO1BMPeXmZg9WwQZPaAvvBBnwVuFS DXlphCU4gEvpgqBuXEsshzFUctQBckjrEqp97ywtGQuEOQCwav3Jivp/XvFpetrZySeH RsbiDfmJNzmhSaUg1KPmsEsbzHM6Dmao97pVVGkBVaYAtmARrl+QlsVXSY1b2+06uqXl GfBIaNKyEvkYk7bfzurOQz2+Xk2xRdlAKdR8/uI/azfmlN3vKd6gVui6Snn+HpmnNDev u3iw== X-Gm-Message-State: AOJu0YxMlN71QMettrBtiFkX5x4+ivTo5y7TlmqocDiExmb8ToOJ/GEr nH1zT8KCpTA1gofJa6w8ZVxbl2ZXhjddiQ== X-Google-Smtp-Source: AGHT+IEEpZQ6KeDtU3VLi7tFsU3QPmGoePMhPKyXBJI6ebmOscraR5Z4z8dHPLT2c0snawLI8qCT6A== X-Received: by 2002:aa7:ccc7:0:b0:556:7cc8:e735 with SMTP id y7-20020aa7ccc7000000b005567cc8e735mr2304162edt.60.1704737815050; Mon, 08 Jan 2024 10:16:55 -0800 (PST) Received: from localhost (fwdproxy-lla-112.fbsv.net. [2a03:2880:30ff:70::face:b00c]) by smtp.gmail.com with ESMTPSA id u11-20020aa7d98b000000b00557556858ffsm90318eds.60.2024.01.08.10.16.54 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 08 Jan 2024 10:16:54 -0800 (PST) From: Breno Leitao To: davem@davemloft.net, edumazet@google.com, kuba@kernel.org, pabeni@redhat.com, Alexander Aring , Stefan Schmidt , Miquel Raynal Cc: netdev@vger.kernel.org, linux-wpan@vger.kernel.org (open list:IEEE 802.15.4 SUBSYSTEM), linux-kernel@vger.kernel.org (open list) Subject: [PATCH net-next 06/10] net: fill in MODULE_DESCRIPTION()s for ieee802154 Date: Mon, 8 Jan 2024 10:16:06 -0800 Message-Id: <20240108181610.2697017-7-leitao@debian.org> X-Mailer: git-send-email 2.39.3 In-Reply-To: <20240108181610.2697017-1-leitao@debian.org> References: <20240108181610.2697017-1-leitao@debian.org> Precedence: bulk X-Mailing-List: linux-wpan@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 W=1 builds now warn if module is built without a MODULE_DESCRIPTION(). Add descriptions to ieee802154 modules. Signed-off-by: Breno Leitao Acked-by: Stefan Schmidt --- net/ieee802154/6lowpan/core.c | 1 + net/ieee802154/socket.c | 1 + 2 files changed, 2 insertions(+) diff --git a/net/ieee802154/6lowpan/core.c b/net/ieee802154/6lowpan/core.c index 2c087b7f17c5..b88f6a96d961 100644 --- a/net/ieee802154/6lowpan/core.c +++ b/net/ieee802154/6lowpan/core.c @@ -280,5 +280,6 @@ static void __exit lowpan_cleanup_module(void) module_init(lowpan_init_module); module_exit(lowpan_cleanup_module); +MODULE_DESCRIPTION("IPv6 over Low power Wireless Personal Area Network IEEE802154.4 core"); MODULE_LICENSE("GPL"); MODULE_ALIAS_RTNL_LINK("lowpan"); diff --git a/net/ieee802154/socket.c b/net/ieee802154/socket.c index 00302e8b9615..db8df6e26159 100644 --- a/net/ieee802154/socket.c +++ b/net/ieee802154/socket.c @@ -1137,4 +1137,5 @@ module_init(af_ieee802154_init); module_exit(af_ieee802154_remove); MODULE_LICENSE("GPL"); +MODULE_DESCRIPTION("IEEE802154.4 socket interface"); MODULE_ALIAS_NETPROTO(PF_IEEE802154); From patchwork Mon Jan 8 18:16:07 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Breno Leitao X-Patchwork-Id: 13513803 Received: from mail-lf1-f41.google.com (mail-lf1-f41.google.com [209.85.167.41]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 9496C55E76; Mon, 8 Jan 2024 18:16:58 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=debian.org Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=gmail.com Received: by mail-lf1-f41.google.com with SMTP id 2adb3069b0e04-50e7c6e3c63so2023279e87.3; Mon, 08 Jan 2024 10:16:58 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1704737817; x=1705342617; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=YiHTO+vMR9qnsdbgTZyf9dtHyg1qTnThJCI4YmGdW6U=; b=KRjr0/N9bPExwkbNDT8QbqjiVvdE7pBYVUliadEXUaTSAmqWsx/OcgoAlGor7Bljn5 Elg6mSRAC1/mk3q/7qHtq0suzsnnl60I+vHvC9pZLbuXzWRI3TZEICqllMrJesV418zW lKPf3MHxPPzGP0xFhdMlsTNZA8xSHroMZSs+2tp+jnUZk9t9xo16gFPGwMKCiu812h/S x/PA+LD7wrWjFIPtv70WDakhd4Mxpv0HXp1CVP76to9UMwOLv24/i7ogA9ciNtGhHLjk nnNGLwJ/lQRJFJbRxgk0qSn359EYWJS7i/8l1lZ5KfHBouhZma88Mr0Dr3PnZcL16hsR zwSw== X-Gm-Message-State: AOJu0YzFzNRSxZgf9L4WMW58RoxoKOm8qWCnsSn2RBCawyOje+awANcD xZJhP84zYvIw7/oK9Oaolqo= X-Google-Smtp-Source: AGHT+IF+F25Qmeh6335I+1JKl7zO64FInNZ+6zgj9dIV3yC7V1s4wbUCwngpLIm6oSvboG79MM8Cjg== X-Received: by 2002:a05:6512:2351:b0:50e:b2f0:3daa with SMTP id p17-20020a056512235100b0050eb2f03daamr1048297lfu.239.1704737816711; Mon, 08 Jan 2024 10:16:56 -0800 (PST) Received: from localhost (fwdproxy-lla-000.fbsv.net. [2a03:2880:30ff::face:b00c]) by smtp.gmail.com with ESMTPSA id i22-20020a170906091600b00a28148beabdsm127836ejd.102.2024.01.08.10.16.56 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 08 Jan 2024 10:16:56 -0800 (PST) From: Breno Leitao To: davem@davemloft.net, edumazet@google.com, kuba@kernel.org, pabeni@redhat.com, Alexander Aring Cc: netdev@vger.kernel.org, linux-bluetooth@vger.kernel.org (open list:6LOWPAN GENERIC (BTLE/IEEE 802.15.4)), linux-wpan@vger.kernel.org (open list:6LOWPAN GENERIC (BTLE/IEEE 802.15.4)), linux-kernel@vger.kernel.org (open list) Subject: [PATCH net-next 07/10] net: fill in MODULE_DESCRIPTION()s for 6LoWPAN Date: Mon, 8 Jan 2024 10:16:07 -0800 Message-Id: <20240108181610.2697017-8-leitao@debian.org> X-Mailer: git-send-email 2.39.3 In-Reply-To: <20240108181610.2697017-1-leitao@debian.org> References: <20240108181610.2697017-1-leitao@debian.org> Precedence: bulk X-Mailing-List: linux-wpan@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 W=1 builds now warn if module is built without a MODULE_DESCRIPTION(). Add descriptions to IPv6 over Low power Wireless Personal Area Network. Signed-off-by: Breno Leitao Acked-by: Alexander Aring --- net/6lowpan/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/6lowpan/core.c b/net/6lowpan/core.c index 7b3341cef926..80d83151ef29 100644 --- a/net/6lowpan/core.c +++ b/net/6lowpan/core.c @@ -178,5 +178,5 @@ static void __exit lowpan_module_exit(void) module_init(lowpan_module_init); module_exit(lowpan_module_exit); - +MODULE_DESCRIPTION("IPv6 over Low power Wireless Personal Area Network module"); MODULE_LICENSE("GPL");