[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1307713751.22348.602.camel@localhost>
Date: Fri, 10 Jun 2011 14:49:11 +0100
From: Ben Hutchings <bhutchings@...arflare.com>
To: Daniel Hellstrom <daniel@...sler.com>
Cc: davem@...emloft.net, netdev@...r.kernel.org
Subject: Re: [PATCH 1/1] dl2k: EEPROM CRC calculation wrong endianess on
bigendian machine
On Fri, 2011-06-10 at 15:16 +0200, Daniel Hellstrom wrote:
> Signed-off-by: Daniel Hellstrom <daniel@...sler.com>
> ---
> drivers/net/dl2k.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/net/dl2k.c b/drivers/net/dl2k.c
> index c445457..4bbbd7b 100644
> --- a/drivers/net/dl2k.c
> +++ b/drivers/net/dl2k.c
> @@ -346,7 +346,7 @@ parse_eeprom (struct net_device *dev)
> if (np->pdev->vendor == PCI_VENDOR_ID_DLINK) { /* D-Link Only */
> /* Check CRC */
> crc = ~ether_crc_le (256 - 4, sromdata);
> - if (psrom->crc != crc) {
> + if (psrom->crc != cpu_to_le32(crc)) {q
You still have a rogue 'q' there.
Ben.
> printk (KERN_ERR "%s: EEPROM data CRC error.\n",
> dev->name);
> return -1;
--
Ben Hutchings, Senior Software Engineer, Solarflare
Not speaking for my employer; that's the marketing department's job.
They asked us to note that Solarflare product names are trademarked.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists