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]
Date:	Fri, 13 Mar 2009 15:32:56 +0000
From:	Ben Dooks <ben@...tec.co.uk>
To:	Daniel Mack <daniel@...aq.de>
Cc:	linux-net@...r.kernel.org, linux-kernel@...r.kernel.org,
	Ben Dooks <ben@...tec.co.uk>
Subject: Re: [PATCH] drivers/net/ax88796.c: take IRQ flags from platform_device

On Fri, Mar 13, 2009 at 03:50:51PM +0100, Daniel Mack wrote:
> This patch adds support to the ax88796 ethernet driver to take IRQ flags
> given by the platform_device definition.
> 
> The patch depends on the platform_get_irq_flags() function which I added
> in a patch posted here:
> 
> 	http://lkml.org/lkml/2009/3/13/267
> 
> Signed-off-by: Daniel Mack <daniel@...aq.de>
> Cc: Ben Dooks <ben@...tec.co.uk>
Acked-by: Ben Dooks <ben-linux@...ff.org>
> ---
>  drivers/net/ax88796.c |    5 ++++-
>  1 files changed, 4 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/net/ax88796.c b/drivers/net/ax88796.c
> index a4eb6c4..728e17c 100644
> --- a/drivers/net/ax88796.c
> +++ b/drivers/net/ax88796.c
> @@ -93,6 +93,7 @@ struct ax_device {
>  
>  	unsigned char		 running;
>  	unsigned char		 resume_open;
> +	unsigned int		 irqflags;
>  
>  	u32			 reg_offsets[0x20];
>  };
> @@ -474,7 +475,8 @@ static int ax_open(struct net_device *dev)
>  
>  	dev_dbg(&ax->dev->dev, "%s: open\n", dev->name);
>  
> -	ret = request_irq(dev->irq, ax_ei_interrupt, 0, dev->name, dev);
> +	ret = request_irq(dev->irq, ax_ei_interrupt, ax->irqflags,
> +			  dev->name, dev);
>  	if (ret)
>  		return ret;
>  
> @@ -856,6 +858,7 @@ static int ax_probe(struct platform_device *pdev)
>  		goto exit_mem;
>  	}
>  	dev->irq = ret;
> +	ax->irqflags = platform_get_irq_flags(pdev, 0);
>  
>  	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
>  	if (res == NULL) {
> -- 
> 1.6.2
> 

-- 
-- 
Ben

Q:      What's a light-year?
A:      One-third less calories than a regular year.

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ