diff options
author | Bob Gilligan <gilligan@vyatta.com> | 2010-02-05 09:54:11 -0800 |
---|---|---|
committer | Bob Gilligan <gilligan@vyatta.com> | 2010-02-05 09:54:11 -0800 |
commit | e1971e4774a6ebb5ed33a09bdd60afa2c0534b6f (patch) | |
tree | f4fc5aaccb4d9dac43ae7a825df9006532c1a059 /src/ethtool-util.h | |
download | vyatta-biosdevname-e1971e4774a6ebb5ed33a09bdd60afa2c0534b6f.tar.gz vyatta-biosdevname-e1971e4774a6ebb5ed33a09bdd60afa2c0534b6f.zip |
Initial commit.debian/0.1
Diffstat (limited to 'src/ethtool-util.h')
-rw-r--r-- | src/ethtool-util.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/ethtool-util.h b/src/ethtool-util.h new file mode 100644 index 0000000..a724343 --- /dev/null +++ b/src/ethtool-util.h @@ -0,0 +1,22 @@ +/* + * Copyright (c) 2006 Dell, Inc. + * by Matt Domsch <Matt_Domsch@dell.com> + * Licensed under the GNU General Public license, version 2. + */ +#ifndef ETHTOOL_UTIL_H__ +#define ETHTOOL_UTIL_H__ + +#include <pci/pci.h> + +#include <limits.h> +#if ULONG_MAX > 0xffffffff +typedef unsigned long u64; +#else +typedef unsigned long long u64; +#endif + +#include "ethtool-copy.h" + +int ethtool_get_info(const char *devname, struct ethtool_drvinfo *drvinfo); + +#endif |