[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1358887479.2892.22.camel@bwh-desktop.uk.solarflarecom.com>
Date: Tue, 22 Jan 2013 20:44:39 +0000
From: Ben Hutchings <bhutchings@...arflare.com>
To: Mark Einon <mark.einon@...il.com>
CC: <netdev@...r.kernel.org>
Subject: Re: [PATCH] ethtool: Add version check for et131x regs
On Sat, 2013-01-05 at 09:57 +0000, Mark Einon wrote:
> Added a version check for the et131x reg dump, in case the dump format
> needs to be changed later.
>
> Signed-off-by: Mark Einon <mark.einon@...il.com>
> ---
> et131x.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/et131x.c b/et131x.c
> index b36c184..8cdbec0 100644
> --- a/et131x.c
> +++ b/et131x.c
> @@ -4,8 +4,12 @@
>
> int et131x_dump_regs(struct ethtool_drvinfo *info, struct ethtool_regs *regs)
> {
> + u8 version = (u8)(regs->version >> 24);
> u32 *reg = (u32 *)regs->data;
>
> + if(version != 1)
Needs a space before the open-parentheis.
Ben.
> + return -1;
> +
> fprintf(stdout, "PHY Registers\n");
> fprintf(stdout, "0x0, Basic Control Reg = 0x%04X\n", *reg++);
> fprintf(stdout, "0x1, Basic Status Reg = 0x%04X\n", *reg++);
--
Ben Hutchings, Staff 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