summaryrefslogtreecommitdiff
path: root/host
diff options
context:
space:
mode:
authorburet2007-07-11 16:43:48 +0000
committerburet2007-07-11 16:43:48 +0000
commitaa31d446014a5f203eea4e9f15b0028c4f2a4964 (patch)
tree2d285299bd1829a4c855085772663a379ff667bf /host
parentf8de1b75986358731943e74c1bb2976ecf25d49b (diff)
Remove phy context from station context and remove phy init from station init.
git-svn-id: svn+ssh://pessac/svn/cesar/trunk@467 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'host')
-rw-r--r--host/sci.h1
-rw-r--r--host/src/station.c1
-rw-r--r--host/station.h2
3 files changed, 0 insertions, 4 deletions
diff --git a/host/sci.h b/host/sci.h
index 8a696a24f8..f1434229f0 100644
--- a/host/sci.h
+++ b/host/sci.h
@@ -24,7 +24,6 @@
#include "host/station.h"
#include "host/netclock.h"
#include "host/fcall.h"
-#include "hal/phy/maximus/inc/maximus_phy_ctx.h"
struct station_ctx;
struct netclock_msg_hdr;
diff --git a/host/src/station.c b/host/src/station.c
index f4d97c46b9..7a3f12f279 100644
--- a/host/src/station.c
+++ b/host/src/station.c
@@ -135,7 +135,6 @@ int station_init(station_ctx_t *station)
fcall_init(station->fcall, station->sci);
station->probe = &_my_probe;
probe_init(station->probe, station->fcall);
- maximus_phy_init(station);
station->ecos_tick_cb = &_ecos_tick_cb;
station->status = STATION_STATUS_RUNNING;
diff --git a/host/station.h b/host/station.h
index af025b98ef..c81a1304f9 100644
--- a/host/station.h
+++ b/host/station.h
@@ -25,7 +25,6 @@
#include "host/sci.h"
#include "host/netclock.h"
#include "host/fcall.h"
-#include "hal/phy/maximus/inc/maximus_phy_ctx.h"
#define STATION_PIPE_PATH "/tmp"
#define STATION_PIPE_PREFIX "station"
@@ -80,7 +79,6 @@ struct station_ctx
struct netclock_ctx *netclock;
struct fcall_ctx *fcall;
struct probe_ctx *probe;
- phy_t *phy;
tick_t current_tick_tck; /** current global clock tick got from sci msg */
int pipe_in_fd; /** file descriptor for messaging input pipe */
char pipe_in_name[MAXPATHLEN]; /** filename of messaging input file */