9722965770
This reverts commit 7beee5f3eb
.
While they repositories of those drivers state that the in kernel one
should be used, as they are newer, it seems they do not provide the
same functionallity. So revert to the out of tree drivers for now.
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
25 lines
878 B
Diff
25 lines
878 B
Diff
src/{igb_ptp.c.orig => igb_ptp.c} | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/src/igb_ptp.c.orig b/src/igb_ptp.c
|
|
index 744fa65..f334ac7 100644
|
|
--- a/src/igb_ptp.c.orig
|
|
+++ b/src/igb_ptp.c
|
|
@@ -93,7 +93,7 @@
|
|
* SYSTIM read access for the 82576
|
|
*/
|
|
|
|
-static cycle_t igb_ptp_read_82576(const struct cyclecounter *cc)
|
|
+static u64 igb_ptp_read_82576(const struct cyclecounter *cc)
|
|
{
|
|
struct igb_adapter *igb = container_of(cc, struct igb_adapter, cc);
|
|
struct e1000_hw *hw = &igb->hw;
|
|
@@ -113,7 +113,7 @@ static cycle_t igb_ptp_read_82576(const struct cyclecounter *cc)
|
|
* SYSTIM read access for the 82580
|
|
*/
|
|
|
|
-static cycle_t igb_ptp_read_82580(const struct cyclecounter *cc)
|
|
+static u64 igb_ptp_read_82580(const struct cyclecounter *cc)
|
|
{
|
|
struct igb_adapter *igb = container_of(cc, struct igb_adapter, cc);
|
|
struct e1000_hw *hw = &igb->hw;
|