aboutsummaryrefslogtreecommitdiffstats
path: root/lib/librte_ether/rte_dev_info.h
diff options
context:
space:
mode:
authorChristian Ehrhardt <christian.ehrhardt@canonical.com>2018-06-01 09:09:08 +0200
committerChristian Ehrhardt <christian.ehrhardt@canonical.com>2018-06-01 09:12:07 +0200
commit1bd9b61222f3a81ffe770fc00b70ded6e760c42b (patch)
tree0bf7d996cf0664796687c1be6d22958fcf6a8096 /lib/librte_ether/rte_dev_info.h
parentbb4e158029645f37809fcf81a3acddd6fa11f88a (diff)
New upstream version 18.05
Change-Id: Icd4170ddc4f63aeae5d0559490e5195b5349f9c2 Signed-off-by: Christian Ehrhardt <christian.ehrhardt@canonical.com>
Diffstat (limited to 'lib/librte_ether/rte_dev_info.h')
-rw-r--r--lib/librte_ether/rte_dev_info.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/lib/librte_ether/rte_dev_info.h b/lib/librte_ether/rte_dev_info.h
deleted file mode 100644
index 6b68584d..00000000
--- a/lib/librte_ether/rte_dev_info.h
+++ /dev/null
@@ -1,31 +0,0 @@
-/* SPDX-License-Identifier: BSD-3-Clause
- * Copyright(c) 2015 Intel Corporation
- */
-
-#ifndef _RTE_DEV_INFO_H_
-#define _RTE_DEV_INFO_H_
-
-#include <stdint.h>
-
-/*
- * Placeholder for accessing device registers
- */
-struct rte_dev_reg_info {
- void *data; /**< Buffer for return registers */
- uint32_t offset; /**< Start register table location for access */
- uint32_t length; /**< Number of registers to fetch */
- uint32_t width; /**< Size of device register */
- uint32_t version; /**< Device version */
-};
-
-/*
- * Placeholder for accessing device eeprom
- */
-struct rte_dev_eeprom_info {
- void *data; /**< Buffer for return eeprom */
- uint32_t offset; /**< Start eeprom address for access*/
- uint32_t length; /**< Length of eeprom region to access */
- uint32_t magic; /**< Device-specific key, such as device-id */
-};
-
-#endif /* _RTE_DEV_INFO_H_ */