From 32c8037055f5fdaba9c9f401fd532c02571b66d7 Mon Sep 17 00:00:00 2001 From: Jeff Garzik Date: Tue, 25 Oct 2005 01:56:48 -0400 Subject: Initial import of ethtool version 3 + a few patches. --- tg3.c | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 tg3.c (limited to 'tg3.c') diff --git a/tg3.c b/tg3.c new file mode 100644 index 0000000..97613e9 --- /dev/null +++ b/tg3.c @@ -0,0 +1,23 @@ +#include +#include "ethtool-util.h" + +#define TG3_MAGIC 0x669955aa + +int +tg3_dump_eeprom(struct ethtool_drvinfo *info, struct ethtool_eeprom *ee) +{ + int i; + + if (ee->magic != TG3_MAGIC) { + fprintf(stderr, "Magic number 0x%08x does not match 0x%08x\n", + ee->magic, TG3_MAGIC); + return -1; + } + + fprintf(stdout, "Address \tData\n"); + fprintf(stdout, "----------\t----\n"); + for (i = 0; i < ee->len; i++) + fprintf(stdout, "0x%08x\t0x%02x\n", i + ee->offset, ee->data[i]); + + return 0; +} -- cgit v1.2.1