summaryrefslogtreecommitdiff
path: root/cesar/hal/leon/timer.h
diff options
context:
space:
mode:
Diffstat (limited to 'cesar/hal/leon/timer.h')
-rw-r--r--cesar/hal/leon/timer.h5
1 files changed, 1 insertions, 4 deletions
diff --git a/cesar/hal/leon/timer.h b/cesar/hal/leon/timer.h
index 012979b807..8c4578402f 100644
--- a/cesar/hal/leon/timer.h
+++ b/cesar/hal/leon/timer.h
@@ -14,8 +14,6 @@
*
*/
-#include "hal/phy/forward.h"
-
typedef void (*leon_timer_cb_t) (void *user_data);
/** forward declaration. */
@@ -25,11 +23,10 @@ typedef struct leon_timer_t leon_timer_t;
* Initialise Leon timer.
* \param user_data user data passed to the callback
* \param cb timer callback, called in ISR context
- * \param phy phy context used to get the phy date.
* \return the newly created context
*/
leon_timer_t *
-leon_timer_init (void *user_data, leon_timer_cb_t cb, phy_t *phy);
+leon_timer_init (void *user_data, leon_timer_cb_t cb);
/**
* Uninitialise the Leon timer.