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>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <14407cb5-58cf-4989-8892-e937af0b07ae@cjdns.fr>
Date: Tue, 6 May 2025 16:27:01 +0200
From: Caleb James DeLisle <cjd@...ns.fr>
To: Thomas Gleixner <tglx@...utronix.de>, LKML <linux-kernel@...r.kernel.org>
Cc: "Jiri Slaby (SUSE)" <jirislaby@...nel.org>
Subject: Re: [PATCH] irqchip/econet-en751221: Switch to
 irq_domain_create_linear()


On 06/05/2025 15:17, Thomas Gleixner wrote:
> irq_domain_add_linear() is about to be removed. Switch to
> irq_domain_create_linear().
>
> Signed-off-by: Thomas Gleixner <tglx@...utronix.de>
Tested-by: Caleb James DeLisle <cjd@...ns.fr>
> ---
>   drivers/irqchip/irq-econet-en751221.c |    3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)
>
> --- a/drivers/irqchip/irq-econet-en751221.c
> +++ b/drivers/irqchip/irq-econet-en751221.c
> @@ -286,7 +286,8 @@ static int __init econet_intc_of_init(st
>   
>   	econet_mask_all();
>   
> -	domain = irq_domain_add_linear(node, IRQ_COUNT, &econet_domain_ops, NULL);
> +	domain = irq_domain_create_linear(of_node_to_fwnode(node), IRQ_COUNT,
> +					  &econet_domain_ops, NULL);
>   	if (!domain) {
>   		pr_err("%pOF: Failed to add irqdomain\n", node);
>   		ret = -ENOMEM;

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ