lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20241015110007.658273-1-ciprianmarian.costea@oss.nxp.com>
Date: Tue, 15 Oct 2024 14:00:07 +0300
From: Ciprian Costea <ciprianmarian.costea@....nxp.com>
To: Andy Whitcroft <apw@...onical.com>,
	Joe Perches <joe@...ches.com>,
	Dwaipayan Ray <dwaipayanray1@...il.com>,
	Lukas Bulwahn <lukas.bulwahn@...il.com>
Cc: linux-kernel@...r.kernel.org,
	NXP S32 Linux Team <s32@....com>,
	Christophe Lizzi <clizzi@...hat.com>,
	Alberto Ruiz <aruizrui@...hat.com>,
	Enric Balletbo <eballetb@...hat.com>,
	Ciprian Marian Costea <ciprianmarian.costea@....nxp.com>
Subject: [PATCH] checkpatch: mark 'devm_rtc_device_register' deprecated

From: Ciprian Marian Costea <ciprianmarian.costea@....nxp.com>

devm_rtc_device_register() is marked as deprecated in its
declaration comment [1].

Furthermore, comments [2] and [3] emphasize that devm_rtc_device_register()
is deprecated and that devm_rtc_allocate_device()
and [devm_]rtc_register_device should be used instead.

Add devm_rtc_device_register() to the list of deprecated apis.

[1] https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/rtc/class.c#n455
[2] https://lore.kernel.org/lkml/20220921114624.3250848-2-linux@rasmusvillemoes.dk/
[3] https://lore.kernel.org/lkml/6659aa90-53c5-4a91-a9f9-01120c88f107@oss.nxp.com/

Signed-off-by: Ciprian Marian Costea <ciprianmarian.costea@....nxp.com>
---
 scripts/checkpatch.pl | 1 +
 1 file changed, 1 insertion(+)

diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 4427572b2477..daa1fd2d4a5b 100755
--- a/scripts/checkpatch.pl
+++ b/scripts/checkpatch.pl
@@ -848,6 +848,7 @@ our %deprecated_apis = (
 	"kunmap"				=> "kunmap_local",
 	"kmap_atomic"				=> "kmap_local_page",
 	"kunmap_atomic"				=> "kunmap_local",
+	"devm_rtc_device_register"	=> "devm_rtc_allocate_device' and 'devm_rtc_register_device",
 );
 
 #Create a search pattern for all these strings to speed up a loop below
-- 
2.45.2


Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ